diff options
author | bunnei <bunneidev@gmail.com> | 2022-01-11 20:58:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 20:58:16 -0800 |
commit | eb7197eb4731d4679565dce0c00dedf6dad9175a (patch) | |
tree | ae891a52f72e937345501ec377658ddc9ee0fe3d /src/tests | |
parent | 599c0763e50cd48c0ba0fb24566c59dffefbb906 (diff) | |
parent | c8b358dba254ea0478d1c1aa697a1276a6451347 (diff) |
Merge pull request #7697 from abouvier/opt-tests
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) |