如何将外部库添加到qt4应用程序c++
将额外编译的库添加到我的 qt 项目的最佳方法是什么? 例如 boost 或 poco libs ?
谢谢 :)
what is the best way to add additional compiled libraries to my qt project ?
For example boost or poco libs ?
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 GCC 编译器,请将类似内容添加到 .pro 文件中:
对于 Boost:
对于 Poco:
INCLUDEPATH
- 是包含头文件的目录的位置LIBPATH
- 是包含 *.a 文件的目录位置LIBS
- 包含您要在应用程序中使用的库的列表If you're using the GCC compiler add something like this to the .pro file:
For Boost:
For Poco:
INCLUDEPATH
- is the location of directory with header filesLIBPATH
- is the location of directory with *.a filesLIBS
- contains list of libraries you want to use in your application