我不确定故障是在 protobuf 中还是在 CMake 模块中,但您在这里有几个选择。
如果find_package
调用成功,您应该可以访问 protobuf 包含路径和 protoc 编译器。您可以读取 的内容${PROTOBUF_INCLUDE_DIRS}/google/protobuf/stubs/common.h
并进行正则表达式搜索#define GOOGLE_PROTOBUF_VERSION
,也可以调用protoc --version
并搜索输出以查找正确的版本。
因此,对于选项 1,您可以执行以下操作:
find_package(Protobuf ${PROTOBUF_VERSION} REQUIRED)
if(NOT EXISTS "${PROTOBUF_INCLUDE_DIRS}/google/protobuf/stubs/common.h")
message(FATAL_ERROR "Failed to find protobuf headers")
endif()
file(STRINGS "${PROTOBUF_INCLUDE_DIRS}/google/protobuf/stubs/common.h" Found
REGEX "#define GOOGLE_PROTOBUF_VERSION 2004001")
if(NOT Found)
message(FATAL_ERROR "Didn't find v2.4.1 of protobuf")
endif()
或对于选项 2:
find_package(Protobuf ${PROTOBUF_VERSION} REQUIRED)
if(NOT PROTOBUF_PROTOC_EXECUTABLE)
message(FATAL_ERROR "Failed to find protoc")
endif()
execute_process(COMMAND ${PROTOBUF_PROTOC_EXECUTABLE} --version
OUTPUT_VARIABLE VersionInfo)
string(FIND "${VersionInfo}" "2.4.1" Found)
if(Found LESS 0)
message(FATAL_ERROR "Didn't find v2.4.1 of protobuf")
endif()