2017-02-07 18:28:20 +08:00
|
|
|
add_clang_executable(clangd
|
2017-02-15 23:04:20 +08:00
|
|
|
ASTManager.cpp
|
2017-02-07 18:28:20 +08:00
|
|
|
ClangDMain.cpp
|
|
|
|
JSONRPCDispatcher.cpp
|
|
|
|
Protocol.cpp
|
|
|
|
ProtocolHandlers.cpp
|
|
|
|
)
|
|
|
|
|
2017-02-28 05:40:35 +08:00
|
|
|
install(TARGETS clangd RUNTIME DESTINATION bin)
|
|
|
|
|
2017-02-07 18:28:20 +08:00
|
|
|
target_link_libraries(clangd
|
|
|
|
clangBasic
|
|
|
|
clangFormat
|
2017-02-15 23:04:20 +08:00
|
|
|
clangFrontend
|
|
|
|
clangTooling
|
2017-03-02 00:23:40 +08:00
|
|
|
clangToolingCore
|
2017-02-07 18:28:20 +08:00
|
|
|
LLVMSupport
|
|
|
|
)
|