diff options
author | Alexandre Bouvier <contact@amb.tf> | 2022-01-12 00:36:20 +0100 |
---|---|---|
committer | Alexandre Bouvier <contact@amb.tf> | 2022-01-12 00:36:20 +0100 |
commit | c8b358dba254ea0478d1c1aa697a1276a6451347 (patch) | |
tree | a5cac6c7bbbf6d4ebba3d942aefb3d5c7762c4c9 /src/tests | |
parent | c65c651b6fb174084a26039ce6ea78e9cd3aedf0 (diff) |
cmake: make tests optional
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 4a20c0768..a69ccb264 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -16,6 +16,6 @@ add_executable(tests create_target_directory_groups(tests) target_link_libraries(tests PRIVATE common core input_common) -target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads) +target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2 Threads::Threads) add_test(NAME tests COMMAND tests) |