Files
clang-p2996/llvm/lib/ExecutionEngine/Orc/Debugging/CMakeLists.txt
Lang Hames 71bb5f7b57 [ORC] Add JITLink to dependencies of OrcDebugging.
The OrcDebugging library depends on JITLink after b2518971d8.
2023-09-28 21:50:35 -07:00

26 lines
436 B
CMake

if( CMAKE_HOST_UNIX AND HAVE_LIBRT )
set(rt_lib rt)
endif()
add_llvm_component_library(LLVMOrcDebugging
DebugInfoSupport.cpp
DebuggerSupport.cpp
DebuggerSupportPlugin.cpp
PerfSupportPlugin.cpp
ADDITIONAL_HEADER_DIRS
${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc/Debugging/
LINK_LIBS
${LLVM_PTHREAD_LIB}
${rt_lib}
LINK_COMPONENTS
DebugInfoDWARF
JITLink
OrcJIT
OrcShared
Support
TargetParser
)