Skip to content

Commit

Permalink
Fix protobuf version in the example (#8509)
Browse files Browse the repository at this point in the history
The version variable should be `protobuf_VERSION` in `CMakeLists.txt`.
  • Loading branch information
LuminousXLB committed Apr 20, 2021
1 parent bc45f92 commit 0fd8358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Expand Up @@ -8,7 +8,7 @@ project(protobuf-examples)
find_package(protobuf CONFIG REQUIRED)

if(protobuf_VERBOSE)
message(STATUS "Using Protocol Buffers ${Protobuf_VERSION}")
message(STATUS "Using Protocol Buffers ${protobuf_VERSION}")
endif()

set(CMAKE_INCLUDE_CURRENT_DIR TRUE)
Expand Down

0 comments on commit 0fd8358

Please sign in to comment.