VS2010 Qt4 Designer 插件与 VS2010 应用程序链接
我目前正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不用担心设计师。为您的插件创建一个调试 .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.