llvm-project/clang-tools-extra/clangd/CMakeLists.txt

28 lines
424 B
CMake

set(LLVM_LINK_COMPONENTS
Support
)
add_clang_library(clangDaemon
ClangdLSPServer.cpp
ClangdServer.cpp
ClangdUnit.cpp
ClangdUnitStore.cpp
DraftStore.cpp
GlobalCompilationDatabase.cpp
JSONRPCDispatcher.cpp
Protocol.cpp
ProtocolHandlers.cpp
LINK_LIBS
clangAST
clangBasic
clangFormat
clangFrontend
clangSema
clangTooling
clangToolingCore
${LLVM_PTHREAD_LIB}
)
add_subdirectory(tool)