[llvm-shlib] Fix the version naming style of libLLVM for Windows (#85710)
[llvm-project.git] / llvm / examples / OrcV2Examples / LLJITWithRemoteDebugging / CMakeLists.txt
blob51b3925f4a9e7903028de5f8945abdd442678d5c
1 set(LLVM_LINK_COMPONENTS
2   Core
3   ExecutionEngine
4   IRReader
5   JITLink
6   OrcDebugging
7   OrcJIT
8   OrcShared
9   OrcTargetProcess
10   Support
11   TargetParser
12   nativecodegen
13   )
15 if (LLVM_INCLUDE_UTILS)
16   add_llvm_example(LLJITWithRemoteDebugging
17     LLJITWithRemoteDebugging.cpp
18     RemoteJITUtils.cpp
20     DEPENDS
21       llvm-jitlink-executor
22   )
24   export_executable_symbols(LLJITWithRemoteDebugging)
25 endif()