1 2set(LLVM_LINK_COMPONENTS 3 Core 4 ExecutionEngine 5 Object 6 OrcJIT 7 OrcShared 8 OrcTargetProcess 9 Passes 10 RuntimeDyld 11 Support 12 native 13 ) 14 15add_llvm_unittest(OrcJITTests 16 CoreAPIsTest.cpp 17 IndirectionUtilsTest.cpp 18 JITTargetMachineBuilderTest.cpp 19 LazyCallThroughAndReexportsTest.cpp 20 OrcTestCommon.cpp 21 QueueChannel.cpp 22 ResourceTrackerTest.cpp 23 RPCUtilsTest.cpp 24 RTDyldObjectLinkingLayerTest.cpp 25 SymbolStringPoolTest.cpp 26 ThreadSafeModuleTest.cpp 27 ) 28 29target_link_libraries(OrcJITTests PRIVATE 30 LLVMTestingSupport 31 ${ORC_JIT_TEST_LIBS}) 32