VS2010 Qt4 Designer 插件与 VS2010 应用程序链接

发布于 2024-12-01 02:39:05 字数 307 浏览 4 评论 0原文

我目前正在使用 VS2010 的插件构建我的第一个 QT4 界面,一切正常。 (Qt应用项目);

如果我然后创建另一个项目(QT4 Designer Plugin),创建我的自定义小部件并编译,然后我可以将这些文件移动到“$(QTDIR)\plugins\designer”中。

然后我可以使用设计器将此小部件添加到我的(Qt 应用程序项目)中;

我想知道的是可以调试插件吗? (Qt Designer 将仅加载 QT4 Designer 插件上的发布版本)。 我可以根据发布和调试构建更改 QtDesigner 查找的目录吗?

谢谢!

I'm currently building my first QT4 interface using the add-in for VS2010, which all works fine. (Qt Application Project);

If I then create another project (QT4 Designer Plugin), create my custom widget and compile I can then move these files into "$(QTDIR)\plugins\designer".

I can then use the designer to add this widget into my (Qt Application Project);

What I would like to know is is it possible debug a plugin? (Qt Designer will only load a release build on the QT4 Designer Plugin).
Can I change the directory QtDesigner looks in based on Release and Debug Build?

Thanks!

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

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

发布评论

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

评论(1

始终不够爱げ你 2024-12-08 02:39:05

你不用担心设计师。为您的插件创建一个调试 .lib 文件并在编译代码时使用它。
只需将调试 .lib 文件包含在 VIsual Studio 中(链接器 -> 输入 -> 其他依赖项)。例如:$(BUILDDIR)\Debug\myplugind.lib
这应该有效。这对我有用。如果您发现任何问题,请告诉我。

You don't have to worry about the designer. Create a debug .lib file for your plugin and use it while compiling your code.
Just include the debug .lib file in your VIsual Studio (Linker->Input->Additional Dependencies). Ex: $(BUILDDIR)\Debug\myplugind.lib
And that should work. This works for me. Let me know if you see any issues.

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