cutest/CMakeLists.txt

11 lines
187 B
CMake
Raw Normal View History

2012-06-03 06:59:41 +00:00
project (cutest C)
enable_testing()
add_library (cutest CuTest.c)
add_executable (AllTests AllTests.c CuTestTest.c)
target_link_libraries (AllTests cutest)
add_test (cutest AllTests)