include_directories("include") add_executable(convolutional_test_runner EXCLUDE_FROM_ALL convolutional.c $) target_link_libraries(convolutional_test_runner correct_static "${LIBM}") set_target_properties(convolutional_test_runner PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests") add_test(NAME convolutional_test WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests" COMMAND convolutional_test_runner) set(all_test_runners ${all_test_runners} convolutional_test_runner) if(HAVE_SSE) add_executable(convolutional_sse_test_runner EXCLUDE_FROM_ALL convolutional-sse.c $) target_link_libraries(convolutional_sse_test_runner correct_static "${LIBM}") set_target_properties(convolutional_sse_test_runner PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests") add_test(NAME convolutional_sse_test WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests" COMMAND convolutional_sse_test_runner) set(all_test_runners ${all_test_runners} convolutional_sse_test_runner) endif() if(HAVE_LIBFEC) add_executable(convolutional_fec_test_runner EXCLUDE_FROM_ALL convolutional-fec.c $) target_link_libraries(convolutional_fec_test_runner correct_static FEC "${LIBM}") set_target_properties(convolutional_fec_test_runner PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests") add_test(NAME convolutional_fec_test WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests" COMMAND convolutional_fec_test_runner) set(all_test_runners ${all_test_runners} convolutional_fec_test_runner) endif() add_executable(convolutional_shim_test_runner EXCLUDE_FROM_ALL convolutional-shim.c $) target_link_libraries(convolutional_shim_test_runner correct_static fec_shim_static "${LIBM}") set_target_properties(convolutional_shim_test_runner PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests") add_test(NAME convolutional_shim_test WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests" COMMAND convolutional_shim_test_runner) set(all_test_runners ${all_test_runners} convolutional_shim_test_runner) add_executable(reed_solomon_test_runner EXCLUDE_FROM_ALL reed-solomon.c rs_tester.c) target_link_libraries(reed_solomon_test_runner correct_static "${LIBM}") set_target_properties(reed_solomon_test_runner PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests") add_test(NAME reed_solomon_test WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests" COMMAND reed_solomon_test_runner) set(all_test_runners ${all_test_runners} reed_solomon_test_runner) if(HAVE_LIBFEC) add_executable(reed_solomon_interop_test_runner EXCLUDE_FROM_ALL reed-solomon-fec-interop.c rs_tester.c rs_tester_fec.c) target_link_libraries(reed_solomon_interop_test_runner correct_static FEC "${LIBM}") set_target_properties(reed_solomon_interop_test_runner PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests") add_test(NAME reed_solomon_interop_test WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests" COMMAND reed_solomon_interop_test_runner) set(all_test_runners ${all_test_runners} reed_solomon_interop_test_runner) endif() add_executable(reed_solomon_shim_interop_test_runner EXCLUDE_FROM_ALL reed-solomon-shim-interop.c rs_tester.c rs_tester_fec_shim.c) target_link_libraries(reed_solomon_shim_interop_test_runner correct_static fec_shim_static "${LIBM}") set_target_properties(reed_solomon_shim_interop_test_runner PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/tests") add_test(NAME reed_solomon_shim_interop_test WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/tests" COMMAND reed_solomon_shim_interop_test_runner) set(all_test_runners ${all_test_runners} reed_solomon_shim_interop_test_runner) add_custom_target(test_runners DEPENDS ${all_test_runners}) add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} DEPENDS test_runners) enable_testing()