summaryrefslogtreecommitdiff
path: root/src/tests/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar liamwhite2023-01-22 18:22:47 -0500
committerGravatar GitHub2023-01-22 18:22:47 -0500
commitf99f618d45ad862c4bc23fc28c91d1c48218a3cb (patch)
treeec7b1205207b6c177af1bad768119e713b30138d /src/tests/CMakeLists.txt
parentMerge pull request #9660 from german77/koreaToTaiwan (diff)
parentcmake: support the standard cmake testing option (diff)
downloadyuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.gz
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.xz
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.zip
Merge pull request #9555 from abouvier/catch2-update
tests: update catch2 to 3.0.1
Diffstat (limited to 'src/tests/CMakeLists.txt')
-rw-r--r--src/tests/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
index 9b65e79cb..ae84408bc 100644
--- a/src/tests/CMakeLists.txt
+++ b/src/tests/CMakeLists.txt
@@ -14,7 +14,6 @@ add_executable(tests
14 core/core_timing.cpp 14 core/core_timing.cpp
15 core/internal_network/network.cpp 15 core/internal_network/network.cpp
16 precompiled_headers.h 16 precompiled_headers.h
17 tests.cpp
18 video_core/buffer_base.cpp 17 video_core/buffer_base.cpp
19 input_common/calibration_configuration_job.cpp 18 input_common/calibration_configuration_job.cpp
20) 19)
@@ -22,7 +21,7 @@ add_executable(tests
22create_target_directory_groups(tests) 21create_target_directory_groups(tests)
23 22
24target_link_libraries(tests PRIVATE common core input_common) 23target_link_libraries(tests PRIVATE common core input_common)
25target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2 Threads::Threads) 24target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2WithMain Threads::Threads)
26 25
27add_test(NAME tests COMMAND tests) 26add_test(NAME tests COMMAND tests)
28 27