2022-06-03 11:26:02 +00:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2018-11-19 14:59:55 +00:00
|
|
|
|
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QQmlEngine>
|
|
|
|
#include <QQmlFileSelector>
|
|
|
|
#include <QQuickView>
|
2024-07-05 17:41:58 +00:00
|
|
|
#include <QQmlApplicationEngine>
|
|
|
|
|
2018-11-19 14:59:55 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2023-07-03 14:49:06 +00:00
|
|
|
QCoreApplication::setOrganizationName("QtProject");
|
|
|
|
QCoreApplication::setApplicationName("Maroon");
|
2018-11-19 14:59:55 +00:00
|
|
|
|
|
|
|
QGuiApplication app(argc, argv);
|
2024-07-05 17:41:58 +00:00
|
|
|
QQmlApplicationEngine engine;
|
2025-04-29 08:36:22 +00:00
|
|
|
engine.loadFromModule(u"examples.Maroon", u"Main");
|
2018-11-19 14:59:55 +00:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|