qmlfrontend/main.cpp
author nemo
Tue, 26 Jun 2018 23:20:28 -0400
changeset 13425 50f852e7ad82
parent 12854 28cb18c5e712
child 12857 90f927b4b9e1
child 14164 745c73e0e644
permissions -rw-r--r--
neglected dep update from r87a6cad20c90: that rev also forces nightly rust due to https://github.com/rust-lang/rust/issues/23121

#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();
}