repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[llvm-shlib] Fix the version naming style of libLLVM for Windows (#85710)
[llvm-project.git]
/
llvm
/
lib
/
ExecutionEngine
/
Orc
/
Debugging
/
CMakeLists.txt
blob
5bf23a7ec0bc89206b6ccc642af3c833361b366e
1
if( CMAKE_HOST_UNIX AND HAVE_LIBRT )
2
set(rt_lib rt)
3
endif()
4
5
add_llvm_component_library(LLVMOrcDebugging
6
DebugInfoSupport.cpp
7
DebuggerSupport.cpp
8
DebuggerSupportPlugin.cpp
9
LLJITUtilsCBindings.cpp
10
PerfSupportPlugin.cpp
11
12
ADDITIONAL_HEADER_DIRS
13
${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc/Debugging/
14
15
LINK_LIBS
16
${LLVM_PTHREAD_LIB}
17
${rt_lib}
18
19
LINK_COMPONENTS
20
DebugInfoDWARF
21
JITLink
22
OrcJIT
23
OrcShared
24
Support
25
TargetParser
26
)