如何让 QtCreator 使用 gsl 库进行编译?
我正在尝试使用 GNU 科学图书馆 (GSL) http://www.gnu.org/software QtCreator 中的 /gsl/。我如何告诉 Qt 创建者添加这些标志: http://www.gnu.org/software/gsl/manual/html_node/Linking-programs-with-the-library.html 正确链接?
I am trying to use the GNU Scientific Library (GSL) http://www.gnu.org/software/gsl/ in QtCreator. How can I tell Qt creator to add these flags: http://www.gnu.org/software/gsl/manual/html_node/Linking-programs-with-the-library.html to link correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要编辑 .pro 文件并手动添加额外的库,例如:
请参阅 QMake 文档以获取更多信息。
You need to edit your .pro file and add the extra libs by hand, e.g.:
See the QMake documentation for more information.
编辑你的 .pro 文件和额外的库并包含在 Windows 中:
然后问题就解决了
Edit your .pro file and extra libs and include in windows:
then the problem is solved