summaryrefslogtreecommitdiffstats
path: root/tests/manual/scaling-compositor/main.cpp
blob: e972b9ca69d6d49e3a431924f72370a4fb20de55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtGui/QGuiApplication>
#include <QtQml/QQmlApplicationEngine>

int main(int argc, char* argv[])
{
    QGuiApplication app(argc, argv);
    QQmlApplicationEngine engine(QUrl("qrc:/main.qml"));
    return app.exec();
}