Home | History | Annotate | Download | only in MCJIT
      1 set(LLVM_LINK_COMPONENTS
      2   asmparser
      3   bitreader
      4   bitwriter
      5   jit
      6   mcjit
      7   nativecodegen
      8   )
      9 
     10 set(MCJITTestsSources
     11   MCJITTest.cpp
     12   MCJITCAPITest.cpp
     13   MCJITMemoryManagerTest.cpp
     14   MCJITObjectCacheTest.cpp
     15   )
     16 
     17 if(MSVC)
     18   list(APPEND MCJITTestsSources MCJITTests.def)
     19 endif()
     20 
     21 add_llvm_unittest(MCJITTests
     22   ${MCJITTestsSources}
     23   )
     24 
     25 if(MINGW OR CYGWIN)
     26   set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
     27 endif()
     28