forked from qt-creator/qt-creator
When compiling default created projects with Qt 6.5 and cmake warnings about Qt policy QTP0001 where issued. This is now fixed for the project templates. A second patch for the qtquick-components repo will be provided to get rid of the remaining policy warnings Change-Id: Ia701a0cc7e030c9cb1459dc48e5ed2a91a6c6c0e Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
36 lines
905 B
Smarty
36 lines
905 B
Smarty
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#include <QGuiApplication>
|
|
#include <QQmlApplicationEngine>
|
|
|
|
#include "app_environment.h"
|
|
#include "import_qml_plugins.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
set_qt_environment();
|
|
QGuiApplication app(argc, argv);
|
|
|
|
QQmlApplicationEngine engine;
|
|
const QUrl url(u"qrc:/qt/qml/Main/main.qml"_qs);
|
|
QObject::connect(
|
|
&engine, &QQmlApplicationEngine::objectCreated, &app,
|
|
[url](QObject *obj, const QUrl &objUrl) {
|
|
if (!obj && url == objUrl)
|
|
QCoreApplication::exit(-1);
|
|
},
|
|
Qt::QueuedConnection);
|
|
|
|
engine.addImportPath(QCoreApplication::applicationDirPath() + "/qml");
|
|
engine.addImportPath(":/");
|
|
|
|
engine.load(url);
|
|
|
|
if (engine.rootObjects().isEmpty()) {
|
|
return -1;
|
|
}
|
|
|
|
return app.exec();
|
|
}
|