我有cmake的问题 我在CMakeLists写作 设置(PROTOBUF_VERSION“2.4.1”) find_package(Protobuf ${PROTOBUF_VERSION}确切需要) 但是当我使用protobuf 2.5.0在我的机器上运行cmake时,它成功生成了makefile. 在stdout我只
我在CMakeLists写作
设置(PROTOBUF_VERSION“2.4.1”)
find_package(Protobuf ${PROTOBUF_VERSION}确切需要)
但是当我使用protobuf 2.5.0在我的机器上运行cmake时,它成功生成了makefile.
在stdout我只有:
– 找到PROTOBUF:/usr/local/lib/libprotobuf.so
但对于ZLIB,我有
– 找到ZLIB:/usr/lib/x86_64-linux-gnu/libz.so(找到版本“1.2.7”)
也许,protobuf在库中不包含自身版本.
有没有办法指定protobufer的版本?
如果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()