Centos – How do I properly link the Google Protocol Buffers library with my application at compilation?
I am following the tutorial listed here on Protobuf's website. I copied the sample addressbook.proto and compiled it using the line protoc --cpp_out=. addressbook.proto Which produced addressbook.pb.cc and addressbook.pb.h. Here is my program, which doesn't do anything right now (I…