14 lines · plain
1include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../)2# When compiled without Remote Index support, the real implementation index3# client is not present. Users will get a notification about this when trying4# to connect to remote index server instance.5add_clang_library(clangdRemoteIndex STATIC6 UnimplementedClient.cpp7 8 LINK_LIBS9 clangdSupport10 11 DEPENDS12 ClangDriverOptions13 )14