我从 main.cpp 收到一个链接器错误,包括QQmlEngine
和QQmlComponent
构造函数在内的大量符号未定义:
#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
是。它们是同一个,还是问题所在?