mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
7bc9287a33
llvm-svn: 178221
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()
|