Files
clang-p2996/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/CMakeLists.txt
2022-12-20 12:51:57 +00:00

23 lines
334 B
CMake

set(LLVM_LINK_COMPONENTS
Core
ExecutionEngine
IRReader
JITLink
OrcJIT
OrcShared
OrcTargetProcess
Support
TargetParser
nativecodegen
)
if (LLVM_INCLUDE_UTILS)
add_llvm_example(LLJITWithRemoteDebugging
LLJITWithRemoteDebugging.cpp
RemoteJITUtils.cpp
DEPENDS
llvm-jitlink-executor
)
endif()