CMakeLists.txt 564 B

123456789101112131415
  1. file(GLOB TEST_C_FILES "*.c")
  2. foreach(TEST_C_FILE ${TEST_C_FILES})
  3. get_filename_component(TEST_C_EXE ${TEST_C_FILE} NAME_WE)
  4. add_executable(${TEST_C_EXE} ${TEST_C_FILE})
  5. target_link_libraries(${TEST_C_EXE} si)
  6. add_test(${TEST_C_EXE} ${TEST_C_EXE})
  7. # Make sure that ctest shows the test error messages if there are any.
  8. set(CMAKE_CTEST_OPTIONS --output-on-failure)
  9. endforeach(TEST_C_FILE)
  10. # Make check compiles the tests and runs them immediately.
  11. # add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} ${CMAKE_CTEST_OPTIONS} DEPENDS ${TEST_EXE})