6 lines
148 B
CMake
6 lines
148 B
CMake
file(GLOB_RECURSE SRCS ${CMAKE_CURRENT_SOURCE_DIR}/*.c)
|
|
|
|
add_executable(tests ${SRCS})
|
|
target_link_libraries(tests game unity)
|
|
|
|
add_test(card tests) |