如何使用 Visual Studio 2010 运行 qwt 示例?

发布于 2024-12-11 19:04:53 字数 226 浏览 0 评论 0原文

我正在尝试使用 VS2010 运行 Qwt 示例。我已经安装了 Visual Studio 的 Qt 插件。然后我打开 Qwt 的 .pro 文件,构建成功。但我不知道下一步该做什么。每当我单击“运行”时,它都会出现一个对话框,其中显示

无法启动程序E:\qwt-6.0.1\src..\lib\qwtd.dll

有谁知道可能会导致此问题的原因吗?

I'm trying to run Qwt examples using VS2010. I've installed the Qt plugin for Visual Studio. I then open the .pro file of Qwt and the build succeeds. But I have no clue what to do next. Whenever I click run, it gives me a dialog which says

unable to start programe E:\qwt-6.0.1\src..\lib\qwtd.dll

Does anyone have an idea what might cause this?

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

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

发布评论

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

评论(2

梦幻之岛 2024-12-18 19:04:53

我刚刚设法使用命令行工具编译了示例。包括的关键步骤:

  1. 将 qt 的 bin 目录以及 qt 和 qwt 的 lib 目录添加到路径
  2. 不要忘记从 Visual Studios bin 目录中运行 vcvars32.bat
  3. VC\bin 也应该在路径中
  4. 按照 qwt 中的安装说明进行操作

,然后 我在 qwt 的 Examples/bin 中有一组运行示例。使用 Qt 菜单中的“打开 Qt 项目文件”选项也可以轻松在 Developer Studio 中打开其中一个。

I just managed to get the examples compiled using the command line tools. Key steps included:

  1. Add the bin dir of qt and the lib dirs of qt and qwt to the path
  2. Dont forget to run vcvars32.bat from Visual Studios bin directory
  3. VC\bin should be in the path too
  4. then follow the INSTALL instructions from qwt

After this I had a set of running examples in examples/bin of qwt. It's also easy to open one of them in Developer Studio with the "Open Qt Project File" option in the Qt Menu.

找个人就嫁了吧 2024-12-18 19:04:53

从您提供给我们的信息来看,您似乎在 StartUp 项目中生成了 DLL 设置。因此,每当您单击运行/调试时,它都会尝试运行该项目的输出,在本例中是 DLL。当然这是行不通的。

如果您想要运行该示例的项目,请在解决方案资源管理器中右键单击该项目,然后选择“设置为启动项目"。现在,当您单击运行/调试时,它将运行您所选项目的输出(可执行文件)。

From the information you're giving us, it seems you have the project generating your DLL set at the StartUp project. So whenever you click on run/debug, it will try to run the output of that project, in this case a DLL. Of course this won't work.

If there is a project for the example you want to run, right click on that project within the Solution Explorer and select "Set as StartUp Project". Now when you click on run/debug, it will run the output (the executable) of the project you selected.

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