1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/examples/ThinLtoJIT/CMakeLists.txt
Nikita Popov 8f742c150c [Examples] Link BitReader in ThinLtoJIT example
D72486 broke the shared library build.
2020-02-03 18:47:38 +01:00

20 lines
281 B
CMake

set(LLVM_LINK_COMPONENTS
BitReader
Core
IRReader
OrcJIT
ExecutionEngine
Support
nativecodegen
Analysis
Passes
)
add_llvm_example(ThinLtoJIT
main.cpp
ThinLtoJIT.cpp
ThinLtoModuleIndex.cpp
ThinLtoInstrumentationLayer.cpp
ThinLtoDiscoveryThread.cpp
)