From a61e02b90f6902bcbd296cf5b4185cb152598211 Mon Sep 17 00:00:00 2001 From: tuttieee Date: Fri, 19 Jun 2020 22:19:19 +0900 Subject: [PATCH] Fix a message indicating the protobuf version in cpp hello_world example's CMakeLists.txt --- examples/cpp/helloworld/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cpp/helloworld/CMakeLists.txt b/examples/cpp/helloworld/CMakeLists.txt index a5e2d9bb27c..7fe4ad399b2 100644 --- a/examples/cpp/helloworld/CMakeLists.txt +++ b/examples/cpp/helloworld/CMakeLists.txt @@ -101,7 +101,7 @@ else() # Looks for protobuf-config.cmake file installed by Protobuf's cmake installation. set(protobuf_MODULE_COMPATIBLE TRUE) find_package(Protobuf CONFIG REQUIRED) - message(STATUS "Using protobuf ${protobuf_VERSION}") + message(STATUS "Using protobuf ${Protobuf_VERSION}") set(_PROTOBUF_LIBPROTOBUF protobuf::libprotobuf) set(_REFLECTION gRPC::grpc++_reflection)