summaryrefslogtreecommitdiffstats
path: root/examples/datavisualization/qmlsurface/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/datavisualization/qmlsurface/main.cpp')
-rw-r--r--examples/datavisualization/qmlsurface/main.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/datavisualization/qmlsurface/main.cpp b/examples/datavisualization/qmlsurface/main.cpp
deleted file mode 100644
index 8f5c0696..00000000
--- a/examples/datavisualization/qmlsurface/main.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
-
-#include <QtGui/QGuiApplication>
-#include <QtCore/QDir>
-#include <QtQuick/QQuickView>
-#include <QtQml/QQmlEngine>
-
-int main(int argc, char *argv[])
-{
- qputenv("QSG_RHI_BACKEND", "opengl");
- QGuiApplication app(argc, argv);
-
- QQuickView viewer;
-
- // The following are needed to make examples run without having to install the module
- // in desktop environments.
-#ifdef Q_OS_WIN
- QString extraImportPath(QStringLiteral("%1/../../../../%2"));
-#else
- QString extraImportPath(QStringLiteral("%1/../../../%2"));
-#endif
- viewer.engine()->addImportPath(extraImportPath.arg(QGuiApplication::applicationDirPath(),
- QString::fromLatin1("qml")));
-
- viewer.setSource(QUrl("qrc:/qml/qml/qmlsurface/main.qml"));
-
- viewer.setTitle(QStringLiteral("Tycho crater on the Moon (height exaggerated)"));
- viewer.setResizeMode(QQuickView::SizeRootObjectToView);
- viewer.show();
-
- return app.exec();
-}