mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-30 23:21:04 +00:00
9f41d22467
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178221 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
327 B
CMake
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()
|