diff options
| author | 2023-01-22 18:22:47 -0500 | |
|---|---|---|
| committer | 2023-01-22 18:22:47 -0500 | |
| commit | f99f618d45ad862c4bc23fc28c91d1c48218a3cb (patch) | |
| tree | ec7b1205207b6c177af1bad768119e713b30138d /src/tests/CMakeLists.txt | |
| parent | Merge pull request #9660 from german77/koreaToTaiwan (diff) | |
| parent | cmake: support the standard cmake testing option (diff) | |
| download | yuzu-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.txt | 3 |
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 | |||
| 22 | create_target_directory_groups(tests) | 21 | create_target_directory_groups(tests) |
| 23 | 22 | ||
| 24 | target_link_libraries(tests PRIVATE common core input_common) | 23 | target_link_libraries(tests PRIVATE common core input_common) |
| 25 | target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2 Threads::Threads) | 24 | target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2WithMain Threads::Threads) |
| 26 | 25 | ||
| 27 | add_test(NAME tests COMMAND tests) | 26 | add_test(NAME tests COMMAND tests) |
| 28 | 27 | ||