9 lines
233 B
CMake
9 lines
233 B
CMake
link_libraries(refcount)
|
|
add_compile_options(-Wall -Wpedantic)
|
|
|
|
add_executable(test_list test_list.c)
|
|
add_test(NAME list COMMAND test_list)
|
|
|
|
add_executable(test_refcount test_refcount.c)
|
|
add_test(NAME refcount COMMAND test_refcount)
|