Build: Add ARM64 configurations

This commit is contained in:
Stenzek
2024-03-21 16:19:17 +10:00
committed by Connor McLaughlin
parent 22d929d171
commit 6ee99d8b81
16 changed files with 787 additions and 133 deletions

View File

@@ -2,11 +2,16 @@ add_pcsx2_test(common_test
byteswap_tests.cpp
path_tests.cpp
string_util_tests.cpp
x86emitter/codegen_tests.cpp
x86emitter/codegen_tests.h
x86emitter/codegen_tests_main.cpp
)
if(_M_X86)
target_sources(common_test PRIVATE
x86emitter/codegen_tests.cpp
x86emitter/codegen_tests.h
x86emitter/codegen_tests_main.cpp
)
endif()
target_link_libraries(common_test PRIVATE
common
)