llvm-6502/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
2013-10-21 22:35:06 +00:00

28 lines
469 B
CMake

set(LLVM_LINK_COMPONENTS
asmparser
bitreader
bitwriter
mcjit
nativecodegen
)
set(MCJITTestsSources
MCJITTest.cpp
MCJITCAPITest.cpp
MCJITMemoryManagerTest.cpp
MCJITMultipleModuleTest.cpp
MCJITObjectCacheTest.cpp
)
if(MSVC)
list(APPEND MCJITTestsSources MCJITTests.def)
endif()
add_llvm_unittest(MCJITTests
${MCJITTestsSources}
)
if(MINGW OR CYGWIN)
set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
endif()