Qt + Google Protocol Buffers,链接库时遇到问题
希望这是一个简单的问题:
我正在使用 Qt 构建一个应用程序,并且希望使用 Google 的 Protocol Buffers。我已经下载并安装了 protobuf 源代码,现在我想在我的项目中链接它。
我的 .pro 文件包含以下行:
LIBS += -L/usr/local/lib -libprotobuf
收到错误:
:: error: library not found for -llibprotobuf
但是,我在尝试编译时
。我假设我正在做一些相当基本的错误。感谢您的帮助!
Hopefully this is an easy question:
I am building an application with Qt and would like to use Google's Protocol Buffers. I have downloaded and installed the protobuf source, now I want to link against it in my project.
My .pro file contains the line:
LIBS += -L/usr/local/lib -libprotobuf
However, I get the error:
:: error: library not found for -llibprotobuf
when trying to compile.
I am assuming that I am doing something rather basic wrong. Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设文件是
libprotobuf.[so|a]
,正确的库链接命令是-lprotobuf
(隐含 lib 前缀)Assuming the file is
libprotobuf.[so|a]
, the correct library link command is-lprotobuf
(the lib prefix is implied)