• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS
2  Analysis
3  Core
4  ExecutionEngine
5  IPO
6  JIT
7  MCJIT
8  ScalarOpts
9  Support
10  Target
11  nativecodegen
12  )
13
14set(MCJITTestsSources
15  MCJITTest.cpp
16  MCJITCAPITest.cpp
17  MCJITMemoryManagerTest.cpp
18  MCJITMultipleModuleTest.cpp
19  MCJITObjectCacheTest.cpp
20  )
21
22if(MSVC)
23  list(APPEND MCJITTestsSources MCJITTests.def)
24endif()
25
26add_llvm_unittest(MCJITTests
27  ${MCJITTestsSources}
28  )
29
30if(MINGW OR CYGWIN)
31  set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
32endif()
33