diff options
Diffstat (limited to 'mominavi.cpp')
-rw-r--r-- | mominavi.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mominavi.cpp b/mominavi.cpp new file mode 100644 index 0000000..1679182 --- /dev/null +++ b/mominavi.cpp @@ -0,0 +1,29 @@ +// SPDX-License-Identifier: GPL-3.0+ +// Copyright (C) 2021 AISIN CORPORATION + +#include <QGuiApplication> +#include <QQmlApplicationEngine> +#include <QQmlContext> + + +int main(int argc, char *argv[]) +{ + QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); + + QGuiApplication app(argc, argv); + QQmlApplicationEngine engine; + + const QUrl url(QStringLiteral("qrc:/mominavi.qml")); + QObject::connect(&engine, &QQmlApplicationEngine::objectCreated, + &app, [url](QObject *obj, const QUrl &objUrl) { + if (!obj && url == objUrl) + QCoreApplication::exit(-1); + }, Qt::QueuedConnection); + engine.load(url); + + QObject *rootObject = engine.rootObjects().constFirst(); + QString StrEnv = qgetenv("MOMIMAP_MAPBOX_ACCESS_TOKEN"); + rootObject->setProperty("mapbox_access_token", StrEnv); + + return app.exec(); +} |