我在使用 QT5 的 Qt Quick Components for Desktop 时遇到了一些安装问题。
以下是我遵循的步骤(基于这些说明):
从http://qt.gitorious.org/qt-components/desktop/trees/master下载 tar.gz并解压组件。
添加到
PATH
环境变量中的变量值(操作系统:Windows 8)C:\Qt\Qt5.3.1\5.3\msvc2012_opengl\bin;C:\Qt\Qt5.3.1\Tools\QtCreator\bin;
运行
vcvars32.bat
脚本 (Visual Studio 2012)。运行命令:
qmake && nmake install
在\qt-components-desktop\components
文件夹中。运行命令:
qmake && nmake install
在\qt-components-desktop\src
文件夹中。该命令已自动将编译好的组件文件复制到 QT 导入文件夹中。
在步骤5中,我收到以下错误:
fatal error C1083: Cannot open include file: 'QtGui/qmenu.h': No such file or directory
fatal error C1083: Cannot open include file: 'QtGui/qmenu.h': No such file or directory
fatal error C1083: Cannot open include file: 'QtGui/qgraphicsitem.h': No such file or directory
fatal error C1083: Cannot open include file: 'QtGui/QStyle': No such file or directory
.\qdeclarativefolderlistmodel.cpp(162) : error C3861: 'setRoleNames': identifier not found
fatal error C1083: Cannot open include file: 'QtGui/QStyle': No such file or directory
fatal error C1083: Cannot open include file: 'QtGui/qgraphicssceneevent.h': No such file or directory
fatal error C1083: Cannot open include file: 'QtGui/QAction': No such file or directory
fatal error C1083: Cannot open include file: 'QtGui/QApplication': No such file or directory
Generating Code...
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\cl.EXE"' : return code '0x2' Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\nmake.exe"' : return code '0x2' Stop.
我知道发生这些错误是因为源代码是针对 QT4 的,并且这些包括减速(如QtGui/QApplication
)在 QT5 中不再存在。
我用谷歌搜索了很多,但我找不到如何下载 QT5 的这个插件,就像 QT4 的http://qt.gitorious.org/qt-components/desktop/trees/master一样。
任何的想法?或者我错过了另一个问题?