Installing Google Protocol Buffers
The serialization framework "google protocol buffers" is a fast and flexible way to serialize messages.
It can be used with nearly any programming language, e.g. C++, Matlab and Java.
http://code.google.com/apis/protocolbuffers/docs/overview.html
To use it on Ubuntu 10.04, 10.10 or 11.04 you can install it in the following way:
Installation
cd ~/00Software wget http://protobuf.googlecode.com/files/protobuf-2.4.1.tar.gz tar xzf protobuf-2.4.1.tar.gz cd protobuf-2.4.1 ./configure make sudo make install sudo ldconfig
Before you can use it, remove any old version of protoc:
sudo apt-get remove protobuf-compiler sudo ldconfig
Usage
If you use qmake, add the following file to your project:
#
# Qt qmake integration with Google Protocol Buffers compiler protoc
#
# To compile protocol buffers with qt qmake, specify PROTOS variable and
# include this file
#
# Example:
# LIBS += /usr/local/lib/libprotobuf.so
# PROTOS = a.proto b.proto
# include(protobuf.pri)
#
# By default protoc looks for .proto files (including the imported ones) in
# the current directory where protoc is run. If you need to include additional
# paths specify the PROTOPATH variable
#
PROTOPATH += .
PROTOPATH += ../Protocol
PROTOPATHS =
for(p, PROTOPATH):PROTOPATHS += --proto_path=$${p}
protobuf_decl.name = protobuf header
protobuf_decl.input = PROTOS
protobuf_decl.output = ${QMAKE_FILE_BASE}.pb.h
protobuf_decl.commands = protoc --cpp_out="." $${PROTOPATHS} ${QMAKE_FILE_NAME}
protobuf_decl.variable_out = GENERATED_FILES
QMAKE_EXTRA_COMPILERS += protobuf_decl
protobuf_impl.name = protobuf implementation
protobuf_impl.input = PROTOS
protobuf_impl.output = ${QMAKE_FILE_BASE}.pb.cc
protobuf_impl.depends = ${QMAKE_FILE_BASE}.pb.h
protobuf_impl.commands = $$escape_expand(\n)
protobuf_impl.variable_out = GENERATED_SOURCES
QMAKE_EXTRA_COMPILERS += protobuf_implSave it as protobuf.pri .
Back to FrontPage