14.3.1 Protobuf在vs2010下配置

Google Protocol Buffer在vs2010下配置

1、从这里下载protobuf-2.6.1.tar.gz到桌面,并解压,解压后的文件夹为protobuf-2.6.1。(我的桌面为C:\Users\mcl\Desktop)

2 、进入文件夹protobuf-2.6.1\vsprojects\,用vs2010打开其中的sln文件,然后生成解决方案(然后这个vs就可以关闭了)。 之后在protobuf-2.6.1\vsprojects\Debug下会有一个protoc.exe,并且还有一些其他的lib文件等。

3、在你vc的lib文件夹下新建一个google文件夹,然后将protobuf-2.6.1\vsprojects\Debug下的全部文件都拷贝进去。

4、将C:\Users\mcl\Desktop\protobuf-2.6.1\src文件夹下的google文件夹拷贝到vs的include文件夹下。

5、新建一个vs工程,比如我在桌面上新建了一个GoogleProtoStudy的工程,然后将protobuf-2.6.1\examples下面的Makefile文件拷贝到GoogleProtoStudy\GoogleProtoStudy下(注意这个文件夹下应该有有vcxproj,filters等文件)。这个时候那个protobuf-2.6.1的文件夹可以全部删掉了。

6、接着在GoogleProtoStudy\GoogleProtoStudy文件夹下新建一个person.proto的文件,内容如下:

  1. package tutorial;
  2. message Person {
  3. optional string dim=1;
  4. repeated int32 num=2;
  5. }
  6. message Student{
  7. optional Person p=1;
  8. }

7、在工程的属性->配置属性->链接器->输入,在右侧的“附加依赖项”中输入libprotobuf.lib,libprotoc.lib(注意分两行,每行一个)。然后在属性->配置属性->链接器->常规,在右侧的“附加库目录”中加入刚才vc目录下lib下那个google文件夹的路径,比如我的是”D:\vs2010\VC\lib\google”。

8、然后新建一个main.cpp,在其中写上如下代码:(注意把所有的目录改成你相关的目录)。然后运行,就会把刚才的person.proto编译成一个.h文件和一个.cpp文件。

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. void trans()
  5. {
  6. std::string S="D:\\vs2010\\VC\\lib\\google\\protoc.exe \
  7. -I=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
  8. --cpp_out=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
  9. C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy\\person.proto";
  10. system(S.c_str());
  11. }
  12. int main()
  13. {
  14. trans(); system("pause"); return 0;
  15. }

9、把刚才生成的文件加入到工程中,就可以使用了。

  1. #include <iostream>
  2. #include <string>
  3. #include "person.pb.h"
  4. using namespace std;
  5. using namespace tutorial;
  6. void trans()
  7. {
  8. std::string S="D:\\vs2010\\VC\\lib\\google\\protoc.exe \
  9. -I=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
  10. --cpp_out=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
  11. C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy\\person.proto";
  12. system(S.c_str());
  13. }
  14. int main()
  15. {
  16. //trans();
  17. Person a;
  18. a.add_num(1);
  19. a.add_num(4);
  20. a.add_num(5);
  21. a.set_dim("hello world");
  22. for(int i=0;i<a.num_size();i++) cout<<a.num(i)<<endl; //输出1 4 5
  23. cout<<a.dim()<<endl; //输出 hello world
  24. Student b;
  25. b.set_allocated_p(&a);
  26. Person* A=b.mutable_p();
  27. cout<<A->dim()<<endl; //输出 hello world
  28. system("pause");
  29. return 0;
  30. }