blob: 7ef509b3243d70d43260d6af307f57dd8a6e4d2b [file] [log] [blame]
Chandler Carruth94d02512012-06-21 09:51:26 +00001set(LLVM_LINK_COMPONENTS
NAKAMURA Takumib5c4b8762013-12-10 11:13:32 +00002 Core
3 ExecutionEngine
4 Interpreter
5 Support
Chandler Carruth94d02512012-06-21 09:51:26 +00006 )
7
8add_llvm_unittest(ExecutionEngineTests
9 ExecutionEngineTest.cpp
10 )
11
Jyotsna Verma8542abd2013-03-28 03:38:29 +000012# Include JIT/MCJIT tests only if native arch is a JIT target.
13list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" have_jit)
14if (NOT have_jit EQUAL -1 )
15 add_subdirectory(JIT)
16 add_subdirectory(MCJIT)
17endif()