[CMake] Update libdeps.
[oota-llvm.git] / unittests / ExecutionEngine / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Core
3   ExecutionEngine
4   Interpreter
5   MC
6   Support
7   )
8
9 add_llvm_unittest(ExecutionEngineTests
10   ExecutionEngineTest.cpp
11   )
12
13 # Include JIT/MCJIT tests only if native arch is a built JIT target.
14 list(FIND LLVM_TARGETS_TO_BUILD "${LLVM_NATIVE_ARCH}" build_idx)
15 list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" jit_idx)
16 if (NOT build_idx LESS 0 AND NOT jit_idx LESS 0)
17   add_subdirectory(JIT)
18   add_subdirectory(MCJIT)
19 endif()