Files
clang-p2996/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/CMakeLists.txt
Stefan Gränitz e5d8cfb2f1 [Orc][examples] Temporarily disable LLJITWithRemoteDebugging build and test
The underlying TargetProcessControl API changes with D104694. Once it landed I can patch and re-enable the example.
2021-06-28 16:54:53 +02:00

25 lines
453 B
CMake

set(LLVM_LINK_COMPONENTS
Core
ExecutionEngine
IRReader
JITLink
OrcJIT
OrcShared
OrcTargetProcess
Support
nativecodegen
)
if (LLVM_INCLUDE_UTILS AND NOT LLVM_INCLUDE_UTILS)
add_llvm_example(LLJITWithRemoteDebugging
LLJITWithRemoteDebugging.cpp
RemoteJITUtils.cpp
DEPENDS
llvm-jitlink-executor
)
else()
# Use a temporary no-op target until D104694 lands.
add_custom_target(LLJITWithRemoteDebugging)
endif()