2017-02-07 18:28:20 +08:00
|
|
|
add_clang_executable(clangd
|
2017-05-16 02:14:35 +08:00
|
|
|
ASTManager.cpp
|
2017-04-13 01:13:08 +08:00
|
|
|
ClangdMain.cpp
|
2017-02-07 18:28:20 +08:00
|
|
|
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
|
2017-04-05 03:42:29 +08:00
|
|
|
clangSema
|
2017-02-15 23:04:20 +08:00
|
|
|
clangTooling
|
2017-03-02 00:23:40 +08:00
|
|
|
clangToolingCore
|
2017-02-07 18:28:20 +08:00
|
|
|
LLVMSupport
|
|
|
|
)
|