2017-05-23 16:12:45 +08:00
|
|
|
add_clang_library(clangDaemon
|
2017-05-16 17:38:59 +08:00
|
|
|
ClangdLSPServer.cpp
|
|
|
|
ClangdServer.cpp
|
|
|
|
ClangdUnit.cpp
|
|
|
|
ClangdUnitStore.cpp
|
|
|
|
DraftStore.cpp
|
|
|
|
GlobalCompilationDatabase.cpp
|
2017-02-07 18:28:20 +08:00
|
|
|
JSONRPCDispatcher.cpp
|
|
|
|
Protocol.cpp
|
|
|
|
ProtocolHandlers.cpp
|
|
|
|
)
|
|
|
|
|
2017-05-23 16:12:45 +08:00
|
|
|
target_link_libraries(clangDaemon
|
2017-02-07 18:28:20 +08:00
|
|
|
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
|
|
|
|
)
|
2017-05-23 16:12:45 +08:00
|
|
|
|
|
|
|
add_subdirectory(tool)
|