2022-06-08 12:47:24 +00:00
|
|
|
// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
|
2024-02-23 14:41:04 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2014-09-24 10:13:37 +00:00
|
|
|
|
2016-04-26 06:38:15 +00:00
|
|
|
#include <Qt3DQuickExtras/qt3dquickwindow.h>
|
2014-09-24 10:13:37 +00:00
|
|
|
#include <QGuiApplication>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
QGuiApplication app(argc, argv);
|
2016-04-26 06:38:15 +00:00
|
|
|
Qt3DExtras::Quick::Qt3DQuickWindow view;
|
2014-09-24 10:13:37 +00:00
|
|
|
|
2016-01-14 07:43:34 +00:00
|
|
|
view.setSource(QUrl("qrc:/main.qml"));
|
2014-09-24 10:13:37 +00:00
|
|
|
view.show();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|