brintos

brintos / llvm-project-archived public Read only

0
0
Text · 393 B · 5c4907f Raw
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