20 lines
No EOL
277 B
CMake
20 lines
No EOL
277 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(cutil)
|
|
|
|
set(HEADERS
|
|
cutypes.h
|
|
cutil.h
|
|
list.h
|
|
array.h
|
|
)
|
|
|
|
set(SOURCES
|
|
cutil.c
|
|
list.c
|
|
array.c
|
|
)
|
|
|
|
add_library(cutil STATIC ${SOURCES} ${HEADERS})
|
|
|
|
add_executable(test test.c)
|
|
target_link_libraries(test cutil) |