FEX/unittests/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
652 B
CMake
Raw Normal View History

2023-05-09 02:46:39 -07:00
if (NOT MINGW_BUILD)
add_subdirectory(APITests/)
add_subdirectory(POSIX/)
add_subdirectory(gvisor-tests/)
add_subdirectory(gcc-target-tests-32/)
add_subdirectory(gcc-target-tests-64/)
add_subdirectory(Utilities/)
2023-05-09 02:46:39 -07:00
if (BUILD_THUNKS)
add_subdirectory(ThunkLibs)
add_subdirectory(ThunkFunctionalTests)
endif()
2023-05-09 02:46:39 -07:00
if (BUILD_FEX_LINUX_TESTS)
add_subdirectory(FEXLinuxTests/)
endif()
endif()
2023-05-09 02:46:39 -07:00
add_subdirectory(ASM/)
add_subdirectory(32Bit_ASM/)
if (ENABLE_VIXL_DISASSEMBLER)
# Tests are only valid to run if the vixl disassembler is enabled and the active JIT is the ARM64 JIT.
add_subdirectory(InstructionCountCI/)
endif()