blob: 922cb7efd5eb6687b8217e2866467e7fdcb68485 [file] [log] [blame]
Andrew Kaylor5e7d7922012-10-04 20:29:44 +00001set(LLVM_LINK_COMPONENTS
2 asmparser
3 bitreader
4 bitwriter
Andrew Kaylor5e7d7922012-10-04 20:29:44 +00005 jit
Andrew Kaylorab5ba512012-11-27 19:42:02 +00006 mcjit
Andrew Kaylor5e7d7922012-10-04 20:29:44 +00007 nativecodegen
8 )
9
10set(MCJITTestsSources
11 MCJITTest.cpp
Andrew Kaylor31be5ef2013-04-29 17:49:40 +000012 MCJITCAPITest.cpp
Andrew Kaylorab5ba512012-11-27 19:42:02 +000013 MCJITMemoryManagerTest.cpp
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000014 MCJITObjectCacheTest.cpp
Andrew Kaylor5e7d7922012-10-04 20:29:44 +000015 )
16
17if(MSVC)
18 list(APPEND MCJITTestsSources MCJITTests.def)
19endif()
20
21add_llvm_unittest(MCJITTests
22 ${MCJITTestsSources}
23 )
24
25if(MINGW OR CYGWIN)
26 set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
27endif()