1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/examples/OrcV2Examples/LLJITWithCustomObjectLinkingLayer/CMakeLists.txt
Lang Hames 4ce58a4d70 [Orc] Add basic OrcV2 C bindings and example.
Renames the llvm/examples/LLJITExamples directory to llvm/examples/OrcV2Examples
since it is becoming a home for all OrcV2 examples, not just LLJIT.

See http://llvm.org/PR31103.
2020-03-14 14:41:22 -07:00

13 lines
188 B
CMake

set(LLVM_LINK_COMPONENTS
Core
IRReader
JITLink
OrcJIT
Support
nativecodegen
)
add_llvm_example(LLJITWithCustomObjectLinkingLayer
LLJITWithCustomObjectLinkingLayer.cpp
)