Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0d4874b0b29edf06ac56659aa91e531b7d538c95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <QGuiApplication>
#include <QQuickView>

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

    QQuickView viewer(QStringLiteral("$(baseName).qml"));
    viewer.show();

    return app.exec();
}

Back to the top