google protobuf

Posted xiaojianliu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了google protobuf相关的知识,希望对你有一定的参考价值。

安装

vs2015 编译 google protobuf 3.5.1

下载:

protobuf 3.5.1
cmake

编译

使用 VS2015开发人员命令提示 进入 protobuf 的 cmake 目录:

mkdir building  && mkdir debug && mkdir release
cd building
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug  -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX=../debug ../cmake
nmake 
nmake install

#删除 building 文件夹下所有文件
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release  -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX=../release ../cmake
nmake 
nmake install

以上是关于google protobuf的主要内容,如果未能解决你的问题,请参考以下文章

Google.Protobuf 不允许属性为空

Netty系列化之Google Protobuf编解码

无法使用 Google 的 protobuf 构建测试 C++ 应用程序

Google Protobufwindows下protobuf的环境搭建

pod spec lint 错误:无法构建模块“Protobuf”,找不到文件:#import "google/protobuf/Any.pbobjc.h"

Google protobuf解析消息逻辑的版本问题