Qt + Google Protocol Buffers,链接库时遇到问题

发布于 2024-10-01 14:19:54 字数 362 浏览 4 评论 0原文

希望这是一个简单的问题:

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤蝉 2024-10-08 14:19:54

假设文件是​​ libprotobuf.[so|a],正确的库链接命令是 -lprotobuf (隐含 lib 前缀)

Assuming the file is libprotobuf.[so|a], the correct library link command is -lprotobuf (the lib prefix is implied)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文