win10 下 protobuf 与 qt

时间:2021-10-26 21:43:50

编译环境: win10 x64   编译器 :mingw32  cmake 使用场景:Qt4.8.7

下载 protobuf 最新的代码:https://github.com/google/protobuf

win10 下 protobuf 与 qt

点击 configure

win10 下 protobuf 与 qt

使用默认的 mingw32 即可,前提是把 mingw32/bin 加到环境变量Path里面。

win10 下 protobuf 与 qt

然后,发现出错了 gmock 没有 ,可以直接勾选取消 gmock 也可以GitHub 自己下载 mock 补充到源码 (我这直接不生成测试了)

win10 下 protobuf 与 qt

win10 下 protobuf 与 qt

然后在自己指定的文件夹中生成了如下文件

win10 下 protobuf 与 qt

开始编译 (mingw32-make )是 mingw32/bin 下的exe (此目录已在环境变量Path中了)等待完成即可。

win10 下 protobuf 与 qt

成果就是它了

win10 下 protobuf 与 qt

用  .\protoc.exe --proto_path=SRC --cpp_out=DST SRC/test.proto 生成文件(自己建立 src 和dst 文件夹 test.proto 放到src文件下)

// 指定语法规则
syntax = "proto3"; message Book
{
string name = ;
int32 pages = ;
float price = ;
} message Student
{
int32 age = ;
string name = ;
float score = ;
repeated Book arrBook = ;
}

生成 test.pb.h 和 test.pb.cc 建立一个Qt项目测试一下吧

void MainWindow::on_pushButton_clicked()
{
//GOOGLE_PROTOBUF_VERIFY_VERSION;
Book book;
Book book2;
book.set_name("哈哈shishi");
book.set_pages();
book.set_price(2.63);
//qDebug()<< book.IsInitialized();
string str ;
book.SerializePartialToString(&str);
book2.ParseFromString(str);
qDebug()<<QString::fromUtf8(book2.name().c_str())<< " "<<book2.price()<<" "<<book2.pages();
}

包含生成的头文件

#include "test.pb.h"
#include <QDebug>
#include <iostream>
using namespace std;

配置一下 头文件和库文件

win10 下 protobuf 与 qt

最后就是结果了,收工。