blob: c6b1f77e3e8bf11afca68f04db46f30099a11268 [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 Kaylor5e7d7922012-10-04 20:29:44 +000013 )
14
15if(MSVC)
16 list(APPEND MCJITTestsSources MCJITTests.def)
17endif()
18
19add_llvm_unittest(MCJITTests
20 ${MCJITTestsSources}
21 )
22
23if(MINGW OR CYGWIN)
24 set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
25endif()