[HACK] CMakeLists: Do not build A64 tests on AArch64
This commit is contained in:
parent
8fdeb84822
commit
c72550f7d9
@ -7,9 +7,9 @@ add_executable(dynarmic_tests
|
|||||||
A32/test_arm_instructions.cpp
|
A32/test_arm_instructions.cpp
|
||||||
A32/test_thumb_instructions.cpp
|
A32/test_thumb_instructions.cpp
|
||||||
A32/testenv.h
|
A32/testenv.h
|
||||||
A64/a64.cpp
|
# A64/a64.cpp
|
||||||
A64/testenv.h
|
# A64/testenv.h
|
||||||
cpu_info.cpp
|
# cpu_info.cpp
|
||||||
fp/FPToFixed.cpp
|
fp/FPToFixed.cpp
|
||||||
fp/FPValue.cpp
|
fp/FPValue.cpp
|
||||||
fp/mantissa_util_tests.cpp
|
fp/mantissa_util_tests.cpp
|
||||||
@ -18,6 +18,14 @@ add_executable(dynarmic_tests
|
|||||||
rand_int.h
|
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)
|
if (DYNARMIC_TESTS_USE_UNICORN)
|
||||||
target_sources(dynarmic_tests PRIVATE
|
target_sources(dynarmic_tests PRIVATE
|
||||||
A32/fuzz_arm.cpp
|
A32/fuzz_arm.cpp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user