author | nemo |
Wed, 02 May 2018 15:29:21 -0400 | |
changeset 13362 | 030b085b182f |
parent 12859 | 28cb18c5e712 |
child 12862 | 90f927b4b9e1 |
child 14148 | 745c73e0e644 |
permissions | -rw-r--r-- |
12859 | 1 |
#include <QGuiApplication> |
2 |
#include <QQmlApplicationEngine> |
|
3 |
||
4 |
int main(int argc, char *argv[]) |
|
5 |
{ |
|
6 |
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); |
|
7 |
QGuiApplication app(argc, argv); |
|
8 |
||
9 |
QQmlApplicationEngine engine; |
|
10 |
engine.load(QUrl(QLatin1String("qrc:/main.qml"))); |
|
11 |
if (engine.rootObjects().isEmpty()) |
|
12 |
return -1; |
|
13 |
||
14 |
return app.exec(); |
|
15 |
} |