1set(LLVM_LINK_COMPONENTS
2  Core
3  ExecutionEngine
4  IRReader
5  JITLink
6  OrcJIT
7  OrcShared
8  OrcTargetProcess
9  Support
10  nativecodegen
11  )
12
13if (LLVM_INCLUDE_UTILS)
14  add_llvm_example(LLJITWithRemoteDebugging
15    LLJITWithRemoteDebugging.cpp
16    RemoteJITUtils.cpp
17
18    DEPENDS
19      llvm-jitlink-executor
20  )
21endif()
22