mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
4e48aeaeb2
This should get the builders green again until I have time to look into the outstanding failures.
32 lines
604 B
CMake
32 lines
604 B
CMake
|
|
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ExecutionEngine
|
|
Object
|
|
OrcJIT
|
|
OrcShared
|
|
OrcTargetProcess
|
|
Passes
|
|
RuntimeDyld
|
|
Support
|
|
native
|
|
)
|
|
|
|
add_llvm_unittest(OrcJITTests
|
|
CoreAPIsTest.cpp
|
|
IndirectionUtilsTest.cpp
|
|
JITTargetMachineBuilderTest.cpp
|
|
LazyCallThroughAndReexportsTest.cpp
|
|
OrcTestCommon.cpp
|
|
QueueChannel.cpp
|
|
ResourceTrackerTest.cpp
|
|
RPCUtilsTest.cpp
|
|
RTDyldObjectLinkingLayerTest.cpp
|
|
SymbolStringPoolTest.cpp
|
|
ThreadSafeModuleTest.cpp
|
|
)
|
|
|
|
target_link_libraries(OrcJITTests PRIVATE
|
|
LLVMTestingSupport
|
|
${ORC_JIT_TEST_LIBS})
|