blob: 9ffe6138ad76ca25fa04bbbaf7cd847153b83132 (
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
|
set(LLVM_LINK_COMPONENTS
asmparser
bitreader
bitwriter
jit
mcjit
nativecodegen
)
set(MCJITTestsSources
MCJITTest.cpp
MCJITMemoryManagerTest.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()
|