如何在 Windows 上构建 Qwt

发布于 2024-08-07 22:24:08 字数 484 浏览 8 评论 0原文

这是我所做的:

  1. 从 sourceforge 下载 qwt-4.2.0-setup-qt230nc.exe
  2. 解压到 C:\Program Files\Qwt
  3. 转到 Qt 命令提示符
  4. 运行 msvc-qmake.bat。
  5. 获取输出

现在lib目录已创建,但它是空的。也尝试打开VS项目文件,但它与VS2008不兼容,因为没有vcproj文件。我也尝试用 qmake 的方式来做: qmake qwt.pro,然后make,但它说make is not recognize。我想我可以使用mingw32-make,但是我给了我很多编译器错误。

我希望能在 QtCreator 中使用 Qwt,但遗憾的是失败了。任何帮助表示赞赏。

Here's what I've done:

  1. Downloaded qwt-4.2.0-setup-qt230nc.exe from sourceforge
  2. Unpack to C:\Program Files\Qwt
  3. Go to Qt Command Prompt
  4. Run msvc-qmake.bat.
  5. Get the output.

Now the lib directory is created, but it's empty. Also tried opening VS project file, but it doesn't converse to VS2008, because there are no vcproj files. I also tried to do it qmake way:
qmake qwt.pro and then make, but it says make is not recognized. I figured that I could use mingw32-make, but I gave me a lot of compiler errors.

I was hoping I would use Qwt within QtCreator, but sadly failed. Any help appreciated.

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

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

发布评论

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

评论(2

若言繁花未落 2024-08-14 22:24:08

我想我已经想出了简单的解决方案:

  1. 打开 QtCreator。
  2. 打开项目...-> C:\Program Files\Qwt\qwt.pro
  3. 构建。
  4. ...
  5. 利润!!!

我猜对了吗?这是执行此操作的有效方法吗?

现在我需要弄清楚如何将它与 QtDesigner 结合起来,因为这里没有设计器插件......

I think I've come up with easy solution:

  1. Open QtCreator.
  2. Open project... -> C:\Program Files\Qwt\qwt.pro
  3. Build.
  4. ...
  5. PROFIT!!!

Do I guess correctly it's valid way to do this?

Now I need to figure out how to marry it with QtDesigner since there is no Designer Plugin in here...

萌酱 2024-08-14 22:24:08

如果您有 Visual Studio,则必须执行后续步骤(根据文件“安装”):

  1. 运行控制台
  2. 将目录更改为安装 QWT 的目录
  3. 输入“qmake qwt.pro”
  4. 输入“nmake”

您必须确保 nmake.exe 和 qmake.exe 在您的 PATH 环境变量中。

PS 添加 nmake.exe(其 Visual Studio 的 make 实现)的简单方法是运行“tools/visual studio 2008 命令提示符” ” 来自视觉工作室的主菜单。

If you have Visual Studio you must to do next steps (according to file "INSTALL"):

  1. run console
  2. change directory to directory where you installed QWT
  3. type "qmake qwt.pro"
  4. type "nmake"

You must be ensured that nmake.exe and qmake.exe in your PATH environment variable.

P.S. Easy way to add nmake.exe (its Visual Studio's make realization) is to run "tools/visual studio 2008 command prompt" from main menu of visual studio.

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