author | unc0rr |
Sun, 24 Dec 2017 00:44:16 +0100 | |
branch | qmlfrontend |
changeset 12858 | 0c6fb706f747 |
parent 12857 | 90f927b4b9e1 |
child 12860 | e33bcb9d5e9c |
permissions | -rw-r--r-- |
12854 | 1 |
#include <QGuiApplication> |
2 |
#include <QQmlApplicationEngine> |
|
3 |
||
12857 | 4 |
#include "hwengine.h" |
5 |
||
12854 | 6 |
int main(int argc, char *argv[]) |
7 |
{ |
|
8 |
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); |
|
9 |
QGuiApplication app(argc, argv); |
|
10 |
||
11 |
QQmlApplicationEngine engine; |
|
12 |
engine.load(QUrl(QLatin1String("qrc:/main.qml"))); |
|
13 |
if (engine.rootObjects().isEmpty()) |
|
14 |
return -1; |
|
15 |
||
16 |
return app.exec(); |
|
17 |
} |