mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-25 00:55:08 +00:00
cmake: support CLANG_LINK_CLANG_DYLIB
This commit is contained in:
parent
0fe8a16504
commit
7e795e9b9e
@ -70,6 +70,9 @@ endif()
|
||||
|
||||
find_package(Clang REQUIRED)
|
||||
|
||||
if(CLANG_LINK_CLANG_DYLIB)
|
||||
target_link_libraries(ccls PRIVATE clang-cpp)
|
||||
else()
|
||||
target_link_libraries(ccls PRIVATE
|
||||
clangIndex
|
||||
clangFormat
|
||||
@ -85,6 +88,7 @@ target_link_libraries(ccls PRIVATE
|
||||
clangDriver
|
||||
clangBasic
|
||||
)
|
||||
endif()
|
||||
|
||||
if(LLVM_LINK_LLVM_DYLIB)
|
||||
target_link_libraries(ccls PRIVATE LLVM)
|
||||
|
Loading…
Reference in New Issue
Block a user