0

我正在尝试按照本指南将 QT 插件安装到 VS 2010 中: http: //thomasstockx.blogspot.ca/2011/03/qt-472-in-visual-studio-2010.html

当我到达第 11 步并尝试执行命令后:

configure -debug-and-release -opensource -shared -no-qt3support -qt-sql-sqlite -phonon -phonon-backend -no-webkit -no-script -platform win32-msvc2010

我收到以下错误:

'configure' is not recognized as an internal or external command,
operable program or batch file.

我使用的是 VS 命令提示符窗口,而不是常规的命令提示符窗口。有人可以建议我可能做错了什么吗?

目前,我在 VS 中看到了加载项。但是,当我单击 Qt-> Launch Designer 时,我收到以下错误消息:

No default QT version found. Please check your QT Visual Studio Add-in settings.
4

1 回答 1

0

configure.exe是 Qt 源代码树根目录中的一个可执行文件(作为 QTDIR)。在您尝试执行此命令之前,请确保您的工作路径是 QTDIR。如果您解决了 QTDIR,请为 command 提供正确的前缀路径configure。这是影子构建,需要 perl。

于 2012-07-26T01:43:45.903 回答