forked from OSchip/llvm-project
[CMake] Cleanup the descriptions for gRPC options
As a followup to https://reviews.llvm.org/D131593, clean up gRPC related option names and messages to make them more generic.
This commit is contained in:
parent
ec3956b6e6
commit
07c2f592a6
|
@ -1,4 +1,4 @@
|
|||
option(ENABLE_GRPC_REFLECTION "Link clangd-index-server to gRPC Reflection library" OFF)
|
||||
option(ENABLE_GRPC_REFLECTION "Link to gRPC Reflection library" OFF)
|
||||
|
||||
# FIXME(kirillbobyrev): Check if gRPC and Protobuf headers can be included at
|
||||
# configure time.
|
||||
|
@ -42,7 +42,7 @@ else()
|
|||
find_program(GRPC_CPP_PLUGIN grpc_cpp_plugin)
|
||||
find_program(PROTOC protoc)
|
||||
if (NOT GRPC_CPP_PLUGIN OR NOT PROTOC)
|
||||
message(FATAL_ERROR "gRPC C++ Plugin and Protoc must be on $PATH for Clangd remote index build.")
|
||||
message(FATAL_ERROR "gRPC C++ Plugin and Protoc must be on $PATH for gRPC-enabled build.")
|
||||
endif()
|
||||
# On macOS the libraries are typically installed via Homebrew and are not on
|
||||
# the system path.
|
||||
|
|
Loading…
Reference in New Issue