aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/qml-debugging/main.cpp
blob: 51f46ef65795cc990d3ee1580fe7595cc557677b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <QGuiApplication>
#include <QQmlApplicationEngine>

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);

    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:///qml/main.qml")));

    return app.exec();
}