OSDN Git Service

[ORC] Add support for resource tracking/removal (removable code).
[android-x86/external-llvm-project.git] / llvm / unittests / ExecutionEngine / Orc / CMakeLists.txt
1
2 set(LLVM_LINK_COMPONENTS
3   Core
4   ExecutionEngine
5   Object
6   OrcError
7   OrcJIT
8   Passes
9   RuntimeDyld
10   Support
11   native
12   )
13
14 add_llvm_unittest(OrcJITTests
15   CoreAPIsTest.cpp
16   IndirectionUtilsTest.cpp
17   JITTargetMachineBuilderTest.cpp
18   LazyCallThroughAndReexportsTest.cpp
19   OrcTestCommon.cpp
20   QueueChannel.cpp
21   ResourceTrackerTest.cpp
22   RPCUtilsTest.cpp
23   RTDyldObjectLinkingLayerTest.cpp
24   SymbolStringPoolTest.cpp
25   ThreadSafeModuleTest.cpp
26   )
27
28 target_link_libraries(OrcJITTests PRIVATE
29                         LLVMTestingSupport
30                         ${ORC_JIT_TEST_LIBS})