Qt5编译错误:'QtQuick':没有这样的文件或目录

时间:2013-10-15 18:13:14

标签: c++ qt

我创建了一个Qt-GUI-Application,我想在其中嵌入一个QtQuick 2.0 QML文件。 就此而言,我在.pro文件中添加了QT + = quick

这就是我的代码:

#include <QApplication>
#include <QtCore>
#include <QtQuick>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QQuickViewviewer;
    viewer.setSource(QUrl::fromLocalFile("file.qml"));
    viewer.show();

    return a.exec();
}

但是,只要我想构建它,我得到的就是以下错误消息:

.. \ main.cpp:3:错误:C1083:无法打开包含文件:'QtQuick':没有这样的文件或目录

我该如何解决这个问题?

我在Windows 7上使用Qt 5.1.1

编辑: 这就是.pro文件的样子

#-------------------------------------------------
#
# Project created by QtCreator 2013-10-15T17:54:42
#
#-------------------------------------------------

QT       += core gui \
            quick

TARGET = IntegratedPowerSupply
TEMPLATE = app


SOURCES += main.cpp

HEADERS  +=

OTHER_FILES += \
    ../../PowerSupply/PowerSupply/file.qml

0 个答案:

没有答案