mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-10 17:12:34 +00:00
![Ryan Houdek](/assets/img/avatar_default.png)
This is blocking performance improvements. This backend is almost unilaterally unused except for when I'm testing if games run on Radeon video drivers. Hopefully AmpereOne and Orin/Grace can fulfill this role when they launch next year.
26 lines
761 B
CMake
26 lines
761 B
CMake
if (NOT MINGW_BUILD)
|
|
add_subdirectory(APITests/)
|
|
add_subdirectory(IR/)
|
|
add_subdirectory(POSIX/)
|
|
add_subdirectory(gvisor-tests/)
|
|
add_subdirectory(gcc-target-tests-32/)
|
|
add_subdirectory(gcc-target-tests-64/)
|
|
add_subdirectory(Utilities/)
|
|
|
|
if (BUILD_THUNKS)
|
|
add_subdirectory(ThunkLibs)
|
|
add_subdirectory(ThunkFunctionalTests)
|
|
endif()
|
|
|
|
if (BUILD_FEX_LINUX_TESTS)
|
|
add_subdirectory(FEXLinuxTests/)
|
|
endif()
|
|
endif()
|
|
|
|
add_subdirectory(ASM/)
|
|
add_subdirectory(32Bit_ASM/)
|
|
if (ENABLE_VIXL_DISASSEMBLER AND (ENABLE_JIT_ARM64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64|^arm64|^armv8\.*"))
|
|
# Tests are only valid to run if the vixl disassembler is enabled and the active JIT is the ARM64 JIT.
|
|
add_subdirectory(InstructionCountCI/)
|
|
endif()
|