[llvm-shlib] Fix the version naming style of libLLVM for Windows (#85710)
[llvm-project.git] / llvm / lib / ExecutionEngine / Orc / Debugging / CMakeLists.txt
blob5bf23a7ec0bc89206b6ccc642af3c833361b366e
1 if( CMAKE_HOST_UNIX AND HAVE_LIBRT )
2   set(rt_lib rt)
3 endif()
5 add_llvm_component_library(LLVMOrcDebugging
6   DebugInfoSupport.cpp
7   DebuggerSupport.cpp
8   DebuggerSupportPlugin.cpp
9   LLJITUtilsCBindings.cpp
10   PerfSupportPlugin.cpp
12   ADDITIONAL_HEADER_DIRS
13   ${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc/Debugging/
15   LINK_LIBS
16   ${LLVM_PTHREAD_LIB}
17   ${rt_lib}
19   LINK_COMPONENTS
20   DebugInfoDWARF
21   JITLink
22   OrcJIT
23   OrcShared
24   Support
25   TargetParser
26   )