-
Bug
-
Resolution: Done
-
P1: Critical
-
None
-
None
-
f874e6ff3b9fc28ec6653ca4226455fa3c18fe7b
A pure QML app's main.cpp often looks like this:
#include <QGuiApplication> #include <QQmlApplicationEngine> int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QQmlApplicationEngine engine("main.qml"); return app.exec(); }
In this case, QtQuick is not linked directly. However, the QML scanner will still run, possibly pulling in plugins which do link to QtQuick. Those plugins won't be able to load, so perhaps a dependency check should be done on them as well.