将 Qxt 插件添加到 Designer
我在将 Qxt 库添加到 Qt Designer 时遇到问题。它给出的错误是:
无法加载库C:/Qt/4.6.2/plugins/designer/QxtDesignerPlugins.dll;找不到指定的模块。
关于问题是什么有什么想法吗?
I'm having a problem with adding the Qxt library to Qt Designer. The error it gives is:
Cannot load library C:/Qt/4.6.2/plugins/designer/QxtDesignerPlugins.dll; The specified module cannot be found.
Any ideas on what the problem is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试将
QT_DEBUG_PLUGINS
环境变量设置为1
,然后重试。这应该会为您提供一些额外的调试输出,有助于隔离问题。Try setting the
QT_DEBUG_PLUGINS
environment variable to1
and then try again. This should give you some additional debug output that will help isolate the problem.检查插件本身是否可以找到它所依赖的所有 dll。使用depends.exe(依赖项检查器)或FileMon.exe 来查找。
该错误消息可能有点误导,因为如果也缺少任何主要 dll 依赖项,错误消息也是一样的。
Check that the plugin itself can find all the dlls it depends on. Use depends.exe (Dependency Checker) or maybe FileMon.exe to find out.
The error message can be a bit misleading, as it is the same if any of the primary dlls dependencies are missing too.