summaryrefslogtreecommitdiff
path: root/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
blob: a425b2478ac6b10a59bf39cdae9c1206f888ae3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
set(LLVM_LINK_COMPONENTS
  Analysis
  Core
  ExecutionEngine
  JIT
  MCJIT
  ScalarOpts
  Support
  Target
  nativecodegen
  )

set(MCJITTestsSources
  MCJITTest.cpp
  MCJITCAPITest.cpp
  MCJITMemoryManagerTest.cpp
  MCJITMultipleModuleTest.cpp
  MCJITObjectCacheTest.cpp
  )

if(MSVC)
  list(APPEND MCJITTestsSources MCJITTests.def)
endif()

add_llvm_unittest(MCJITTests
  ${MCJITTestsSources}
  )

if(MINGW OR CYGWIN)
  set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
endif()