qmlfrontend/main.cpp
author nemo
Fri, 18 May 2018 09:56:56 -0400
branch0.9.24
changeset 13395 fa81f809fbb9
parent 12854 28cb18c5e712
child 12857 90f927b4b9e1
child 14143 745c73e0e644
permissions -rw-r--r--
IFDEF for Phys 2.0 which has no mountHandle - result will just be no hwp in hwp on those systems, which would be rarely used and DLC only.

#include <QGuiApplication>
#include <QQmlApplicationEngine>

int main(int argc, char *argv[])
{
  QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
  QGuiApplication app(argc, argv);

  QQmlApplicationEngine engine;
  engine.load(QUrl(QLatin1String("qrc:/main.qml")));
  if (engine.rootObjects().isEmpty())
    return -1;

  return app.exec();
}