brintos

brintos / llvm-project-archived public Read only

0
0
Text · 544 B · 3784ca2 Raw
35 lines · plain
1set(LLVM_LINK_COMPONENTS2  Analysis3  Core4  ExecutionEngine5  MC6  MCJIT7  Passes8  RuntimeDyld9  ScalarOpts10  Support11  Target12  TargetParser13  nativecodegen14  )15 16set(MCJITTestsSources17  MCJITTest.cpp18  MCJITCAPITest.cpp19  MCJITMemoryManagerTest.cpp20  MCJITMultipleModuleTest.cpp21  MCJITObjectCacheTest.cpp22  )23 24if(MSVC)25  list(APPEND MCJITTestsSources MCJITTests.def)26endif()27 28add_llvm_unittest(MCJITTests29  ${MCJITTestsSources}30  )31 32if(MINGW OR CYGWIN)33  set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)34endif()35