1
0
mirror of https://github.com/rtbrick/bngblaster.git synced 2024-05-06 15:54:57 +00:00
Christian Giese 08d2f85975 Add LSPGEN and Restructure Project
+ restructure project
+ add lspgen
+ ...
2022-03-08 21:25:09 +01:00

6 lines
232 B
CMake

set(LINK_LIBS cmocka m)
add_executable(test-utils utils.c ../src/utils.c)
target_link_libraries(test-utils ${LINK_LIBS})
target_compile_options(test-utils PRIVATE -Werror -Wall -Wextra)
add_test(NAME "TestUtils" COMMAND test-utils)