24 lines · plain
1set(LLVM_LINK_COMPONENTS2 Support3 )4add_clang_executable(clangd-index-server5 Server.cpp6 7 DEPENDS8 clangdRemoteIndexProto9 clangdRemoteIndexServiceProto10 )11 12target_link_libraries(clangd-index-server13 PRIVATE14 clangDaemon15 clangdSupport16 17 clangdMonitoringServiceProto18 clangdRemoteIndexProto19 clangdRemoteIndexServiceProto20 clangdRemoteMarshalling21 22 ${REFLECTION_LIBRARY}23 )24