blob: 4eefc1e3bb1b0ddcc758cd81311005a4893dde53 [file] [log] [blame]
Chandler Carruth94d02512012-06-21 09:51:26 +00001set(LLVM_LINK_COMPONENTS
Chandler Carruth94d02512012-06-21 09:51:26 +00002 interpreter
Chandler Carruth94d02512012-06-21 09:51:26 +00003 )
4
5add_llvm_unittest(ExecutionEngineTests
6 ExecutionEngineTest.cpp
7 )
8
Jyotsna Verma8542abd2013-03-28 03:38:29 +00009# Include JIT/MCJIT tests only if native arch is a JIT target.
10list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" have_jit)
11if (NOT have_jit EQUAL -1 )
12 add_subdirectory(JIT)
13 add_subdirectory(MCJIT)
14endif()