try fix test CMakeLists

This commit is contained in:
ado 2021-01-21 01:45:16 +01:00
parent 33f65e2061
commit 40f8dcc203

View File

@ -28,10 +28,10 @@ include(doctest)
enable_testing()
foreach(name IN ITEMS test_main test_parser test_converter test_extractions)
foreach(name IN ITEMS test_parser test_converter test_extractions)
add_executable("${name}" "${name}.cpp")
target_link_libraries("${name}" PRIVATE ssp::ssp doctest::doctest)
target_compile_definitions("${name}" PRIVATE \
target_compile_definitions("${name}" PRIVATE
DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN CMAKE_GITHUB_CI)
doctest_discover_tests("${name}")
endforeach()