如何在 Qt 4.7 中使用 Qwt

发布于 2024-10-15 01:17:22 字数 95 浏览 5 评论 0原文

我已经下载了 QWT &想要用它来创建图表和图表。我正在使用 Qt 4.7 来创建应用程序。如何在我的应用程序中使用 Qwt。如何添加头文件&库到我的应用程序?

I have downloaded the QWT & want to use that for creation of graphs & charts. I am using Qt 4.7 for creating application. How to use Qwt in my application. How do I add the header file & library to my application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

旧竹 2024-10-22 01:17:22

好吧,忽略之前的答案。对于任何不使用任何特殊设置的“随机”库来说,这是正确的,但看起来 QWT 略有不同。阅读 Johnny 的评论后,我意识到 QWT 提供了一种更简单、更正确的配置项目来使用它的方法:

  • 根据 INSTALL 文件中的说明安装 QWT,根据需要调整 qwtconfig.pri(配置安装路径等)。 )。

  • 然后,根据qmake手册,设置搜索qwt.prf的路径,例如将其添加到您的项目文件或qmake的命令行参数中:

    QMAKEFEATURES+=c:/Qwt-6.0.0-rc5/features

当然,“c:/Qwt-6.0.0-rc5”应该替换为QWT真正安装的目录。

  • 在您的项目文件中,添加以下行:

    CONFIG += qwt

Okay, disregard the previous answer. It was correct for any "random" library that doesn't use any special setup, but it looks like that QWT is slightly different. After reading Johnny's comment I realized that QWT provides an easier and more correct way of configuring a project to use it:

  • Install QWT according to the instructions in the INSTALL file, adjusting qwtconfig.pri as necessary (to configure installation paths etc.).

  • Then, according to the qmake manual, set the path to search for qwt.prf, for example by adding this to your project file or to qmake's command line parameters:

    QMAKEFEATURES+=c:/Qwt-6.0.0-rc5/features

Of course, "c:/Qwt-6.0.0-rc5" should be replaced by the directory where QWT is really installed.

  • In your project file, add this line:

    CONFIG += qwt

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