Google Protocol Buffer在QT Creator使用教程(一)下载与编译

时间:2024-05-24 07:27:42

一、运行环境:win7 64位    visual studio 2017 社区版

一、下载

1、下载地址:https://github.com/protocolbuffers/protobuf/releases/tag/v2.6.1

2、打开地址后在页面底部点击protobuf-2.6.1.zip下载

Google Protocol Buffer在QT Creator使用教程(一)下载与编译

二、编译

 1、下载解压缩后,放在D盘下,用Visual Studio 2017打开D:\protobuf-2.6.1\vsprojects下的protobuf.sln,打开后如下图所示。包含9个项目

Google Protocol Buffer在QT Creator使用教程(一)下载与编译

2、选择debug静态,依次生成libprotobuf和libprotoc。然后在D:\protobuf-2.6.1\vsprojects\Debug目录下看到protoc.exe和libprotobuf.lib、libprotoc.lib等文件。

到此,google protocol buffer已经编译完成,下一步就可以在QT creator中使用了。