找不到QQmlEngine符号

时间:2014-10-23 02:03:49

标签: qt qml qt-creator qt5 qqmlcomponent

我收到一个链接器错误,包括QQmlEngineQQmlComponent构造函数的整个符号未定义,来自main.cpp:

#include <QCoreApplication>
#include <QtQml/QQmlEngine>
#include <QtQml/QQmlComponent>
#include <QtQml/QQmlContext>

int main(int argc, char* argv[]){
    QCoreApplication app(argc, argv);
    QQmlEngine eng;

    QQmlComponent component(&eng, QUrl::fromLocalFile("app.qml"));
    component.create();
}

我已经运行qmake -project,并重建了所有。

浏览其他问题和文档时,似乎包含QQmlEngine,但找不到,QtQml/QQmlEngine是。{{1}}。它们是同一个,还是那个问题?

1 个答案:

答案 0 :(得分:2)

将以下内容添加到.pro文件中:

QT += qml quick