blob: 9ffe6138ad76ca25fa04bbbaf7cd847153b83132 [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 Kaylorab5ba512012-11-27 19:42:02 +000012 MCJITMemoryManagerTest.cpp
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000013 MCJITObjectCacheTest.cpp
Andrew Kaylor5e7d7922012-10-04 20:29:44 +000014 )
15
16if(MSVC)
17 list(APPEND MCJITTestsSources MCJITTests.def)
18endif()
19
20add_llvm_unittest(MCJITTests
21 ${MCJITTestsSources}
22 )
23
24if(MINGW OR CYGWIN)
25 set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
26endif()