From f8c5757d99edcdbe179896083c71a598c5a978c7 Mon Sep 17 00:00:00 2001 From: ado Date: Sat, 17 Feb 2024 21:08:24 +0100 Subject: [PATCH] Fix unit test CMakeLists --- test/CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index de6b612..5e35bee 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -32,9 +32,11 @@ set(DOCTEST "${FETCHCONTENT_BASE_DIR}/doctest-src") enable_testing() -foreach(name IN ITEMS test_splitter test_parser test_converter test_extractions - test_parser2_1 test_parser2_2 test_parser2_3 - test_parser2_4 test_extractions_without_fast_float) +foreach(name IN ITEMS test_splitter test_parser1_1 test_parser1_2 + test_parser1_3 test_parser_1_4 test_converter + test_extractions test_parser2_1 test_parser2_2 + test_parser2_3 test_parser2_4 + test_extractions_without_fast_float) add_executable("${name}" "${name}.cpp") target_link_libraries("${name}" PRIVATE ssp::ssp fast_float doctest::doctest)