[HACK] CMakeLists: Do not build A64 tests on AArch64

This commit is contained in:
SachinVin 2019-07-18 16:42:10 +01:00 committed by BreadFish64
parent c0993253e5
commit 0a945f8c0b

View File

@ -3,9 +3,9 @@ add_executable(dynarmic_tests
A32/test_arm_instructions.cpp
A32/test_thumb_instructions.cpp
A32/testenv.h
A64/a64.cpp
A64/testenv.h
cpu_info.cpp
# A64/a64.cpp
# A64/testenv.h
# cpu_info.cpp
fp/FPToFixed.cpp
fp/FPValue.cpp
fp/mantissa_util_tests.cpp
@ -14,6 +14,14 @@ add_executable(dynarmic_tests
rand_int.h
)
if (ARCHITECTURE_x86_64)
target_sources(dynarmic_tests PRIVATE
A64/a64.cpp
A64/testenv.h
cpu_info.cpp
)
endif()
if (DYNARMIC_TESTS_USE_UNICORN)
target_sources(dynarmic_tests PRIVATE
A32/fuzz_arm.cpp