1

我从 main.cpp 收到一个链接器错误,包括QQmlEngineQQmlComponent构造函数在内的大量符号未定义:

#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,并重建了所有。

浏览其他问题和文档,似乎 include 应该是QQmlEngine,但这没有找到,并且QtQml/QQmlEngine是。它们是同一个,还是问题所在?

4

1 回答 1

3

Add the following to your .pro file:

QT += qml quick
于 2014-10-23T03:15:04.757 回答