[docs] Fix build-docs.sh
[llvm-project.git] / llvm / unittests / ExecutionEngine / MCJIT / CMakeLists.txt
blob6f333454b0e9e5699c5e465778308316c950227c
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()
36 set_property(TARGET MCJITTests PROPERTY FOLDER "Tests/UnitTests/ExecutionTests")