diff options
Diffstat (limited to 'examples/qt3d/scene2d/main.cpp')
-rw-r--r-- | examples/qt3d/scene2d/main.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/examples/qt3d/scene2d/main.cpp b/examples/qt3d/scene2d/main.cpp deleted file mode 100644 index 00db8561a..000000000 --- a/examples/qt3d/scene2d/main.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB). -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause - -#include <Qt3DQuickExtras/qt3dquickwindow.h> -#include <QGuiApplication> - -int main(int argc, char **argv) -{ - QGuiApplication app(argc, argv); - - Qt3DExtras::Quick::Qt3DQuickWindow view; - view.setSource(QUrl("qrc:/main.qml")); - view.resize(1400, 1100); - view.show(); - - return app.exec(); -} |