QML 5.3 iOS compilation of pure QML app
- by Nathaniel Johnson
I have an application written in QML. Initially, I used the standard C++ bootstrap for the app.
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// A bunch of components and data models written in C++
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:///main.qml")));
return app.exec();
}
The…