BuildBot fix, compiler complains about array decay to pointer
[llvm-core.git] / unittests / ExecutionEngine / MCJIT / CMakeLists.txt
blobb5f8a14c41c1a5e35c3af83a53b466bb57513e4c
1 set(LLVM_LINK_COMPONENTS
2   Analysis
3   Core
4   ExecutionEngine
5   IPO
6   InstCombine
7   MC
8   MCJIT
9   RuntimeDyld
10   ScalarOpts
11   Support
12   Target
13   nativecodegen
14   )
16 set(MCJITTestsSources
17   MCJITTest.cpp
18   MCJITCAPITest.cpp
19   MCJITMemoryManagerTest.cpp
20   MCJITMultipleModuleTest.cpp
21   MCJITObjectCacheTest.cpp
22   )
24 if(MSVC)
25   list(APPEND MCJITTestsSources MCJITTests.def)
26 endif()
28 add_llvm_unittest(MCJITTests
29   ${MCJITTestsSources}
30   )
32 if(MINGW OR CYGWIN)
33   set_property(TARGET MCJITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
34 endif()