Initial commit. Able to add int to the beginning and end of the list, as well as traverse the list.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
project(klist)
|
||||
|
||||
set (INCLUDE
|
||||
include/klist.h
|
||||
include/types.h
|
||||
)
|
||||
|
||||
set (SOURCES
|
||||
src/klist.c
|
||||
)
|
||||
|
||||
include_directories(${CMAKE_CURRENT_LIST_DIR}/include/)
|
||||
|
||||
add_library(klist STATIC ${SOURCES} ${INCLUDE})
|
||||
Reference in New Issue
Block a user