summaryrefslogtreecommitdiff
path: root/unittests/ExecutionEngine/CMakeLists.txt
blob: 7ef509b3243d70d43260d6af307f57dd8a6e4d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set(LLVM_LINK_COMPONENTS
  Core
  ExecutionEngine
  Interpreter
  Support
  )

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()