diff options
author | merry <[email protected]> | 2022-12-06 14:50:37 +0000 |
---|---|---|
committer | merry <[email protected]> | 2022-12-06 14:50:37 +0000 |
commit | f69ae1c672ca0cc34b759e509c34010b507a5b46 (patch) | |
tree | beed6e560a57de080ac7a7e508d330af1de98df1 /tests | |
parent | ec1f1176653692d898afb8004dc6e585b246f85c (diff) | |
download | dynarmic-f69ae1c672ca0cc34b759e509c34010b507a5b46.tar.gz dynarmic-f69ae1c672ca0cc34b759e509c34010b507a5b46.zip |
tests: dynarmic_test_generator also depends on A64 frontend
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 5e25a3ca..efdfa014 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -84,7 +84,7 @@ if (("A32" IN_LIST DYNARMIC_FRONTENDS) AND ("A64" IN_LIST DYNARMIC_FRONTENDS)) target_compile_definitions(dynarmic_print_info PRIVATE FMT_USE_USER_DEFINED_LITERALS=1) endif() -if ("A32" IN_LIST DYNARMIC_FRONTENDS) +if (("A32" IN_LIST DYNARMIC_FRONTENDS) AND ("A64" IN_LIST DYNARMIC_FRONTENDS)) add_executable(dynarmic_test_generator fuzz_util.cpp fuzz_util.h |