1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/unittests/ExecutionEngine/CMakeLists.txt

15 lines
327 B
CMake

set(LLVM_LINK_COMPONENTS
interpreter
)
add_llvm_unittest(ExecutionEngineTests
ExecutionEngineTest.cpp
)
# Include JIT/MCJIT tests only if native arch is a JIT target.
list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" have_jit)
if (NOT have_jit EQUAL -1 )
add_subdirectory(JIT)
add_subdirectory(MCJIT)
endif()