Windows下google/protobuf v3.5.1--VS x86 x64编译、使用

时间:2024-03-24 21:15:26

下载 protobuf 、cmake 
https://github.com/google/protobuf/releases 
https://cmake.org/download/

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

打开cmake

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

1.你下载的protubuf目录中的cmake目录 
2.protubuf编译后的目录 
然后点configure

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

会自动检测出你的vs,一切默认就好,然后点 finish

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

然后点击Generate,如果成功,进入编译好的目录

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

用vs打开这个项目

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

我只用到了libprotobuf和protoc,如果到时候缺少库,再编译一下libprotoc吧(网上很多人用了) 
然后编译这两个文件夹

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

编译到目前为止就结束了,现在来说怎么使用 
首先建立一个vs工程,把上面的libprotobufd.lib和proto.exe拷贝到vs工程中 
自己再写一个简单的protobuf文件

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

把生成的.h和.cc文件copy到源文件目录,再手动添加到项目中

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

最重要的来了,自己被整到死的几个关键步骤

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

如果有多个.lib用 ; 隔开 
还需要把protobuf/src/google拷贝过来

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用

终于可以运行了,满满的泪,你们肯定不知道为此我花了多久时间,心酸历

Windows下google/protobuf v3.5.1--VS2017 x86 x64编译、使用