diff options
author | Alexandre Bouvier <[email protected]> | 2022-12-31 19:43:35 +0100 |
---|---|---|
committer | merry <[email protected]> | 2023-01-06 10:40:03 +0000 |
commit | 46e5f4ee977ee86f860ade58c38f30f6fe601884 (patch) | |
tree | a8efb9d1ea91377381ffc6ba20f7ecf7bbe1dcc0 /tests | |
parent | a1cbea7948372989218a4e6159a95998d65876a2 (diff) | |
download | dynarmic-46e5f4ee977ee86f860ade58c38f30f6fe601884.tar.gz dynarmic-46e5f4ee977ee86f860ade58c38f30f6fe601884.zip |
cmake: use ctest module
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b667aca6..20f96588 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -105,6 +105,6 @@ create_target_directory_groups(dynarmic_tests) target_link_libraries(dynarmic_tests PRIVATE dynarmic Boost::boost Catch2::Catch2WithMain fmt::fmt merry::mcl) target_include_directories(dynarmic_tests PRIVATE . ../src) target_compile_options(dynarmic_tests PRIVATE ${DYNARMIC_CXX_FLAGS}) -target_compile_definitions(dynarmic_tests PRIVATE FMT_USE_USER_DEFINED_LITERALS=1 CATCH_CONFIG_ENABLE_BENCHMARKING=1) +target_compile_definitions(dynarmic_tests PRIVATE FMT_USE_USER_DEFINED_LITERALS=1) add_test(dynarmic_tests dynarmic_tests --durations yes) |