diff --git a/services/lib/cmake-components/grpc.cmake b/services/lib/cmake-components/grpc.cmake index c64424fbd..7405fe919 100644 --- a/services/lib/cmake-components/grpc.cmake +++ b/services/lib/cmake-components/grpc.cmake @@ -1,22 +1,25 @@ +# Disable naming conventions, as the variable names are determined by upstream +# cmake-lint: disable=C0103 + # protobuf set(protobuf_MODULE_COMPATIBLE TRUE) find_package(Protobuf CONFIG REQUIRED) message(STATUS "Using protobuf ${Protobuf_VERSION}") set(_PROTOBUF_LIBPROTOBUF protobuf::libprotobuf) set(_PROTOBUF_PROTOC $) # Find gRPC installation find_package(gRPC CONFIG REQUIRED) message(STATUS "Using gRPC ${gRPC_VERSION}") set(_GRPC_GRPCPP gRPC::grpc++) set(_GRPC_CPP_PLUGIN_EXECUTABLE $) set( GRPC_LIBS ${_GRPC_GRPCPP} ${_PROTOBUF_LIBPROTOBUF} gRPC::grpc++_reflection )