
This was originally landed without the optional part and reverted later:
8080ea4c4b
Reviewed By: kadircet
Differential Revision: https://reviews.llvm.org/D98404
23 lines
337 B
CMake
23 lines
337 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
add_clang_executable(clangd-index-server
|
|
Server.cpp
|
|
|
|
DEPENDS
|
|
RemoteIndexProto
|
|
RemoteIndexServiceProto
|
|
)
|
|
|
|
target_link_libraries(clangd-index-server
|
|
PRIVATE
|
|
clangDaemon
|
|
clangdSupport
|
|
|
|
RemoteIndexProto
|
|
RemoteIndexServiceProto
|
|
clangdRemoteMarshalling
|
|
|
|
${REFLECTION_LIBRARY}
|
|
)
|