summaryrefslogtreecommitdiffstats
path: root/examples/sensors/sensorsshowcase/sensorsshowcase.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sensors/sensorsshowcase/sensorsshowcase.pro')
-rw-r--r--examples/sensors/sensorsshowcase/sensorsshowcase.pro46
1 files changed, 46 insertions, 0 deletions
diff --git a/examples/sensors/sensorsshowcase/sensorsshowcase.pro b/examples/sensors/sensorsshowcase/sensorsshowcase.pro
new file mode 100644
index 00000000..cded9071
--- /dev/null
+++ b/examples/sensors/sensorsshowcase/sensorsshowcase.pro
@@ -0,0 +1,46 @@
+# Copyright (C) 2023 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+QT += quick sensors svg
+
+TARGET = sensorsshowcase
+TEMPLATE = app
+
+SOURCES = main.cpp
+
+qml_resources.files = \
+ qmldir \
+ Main.qml \
+ Accelerometer.qml \
+ Compass.qml \
+ Gyroscope.qml \
+ Magnetometer.qml \
+ Proximity.qml \
+ ProgressXYZBar.qml \
+ images/compass.svg \
+ images/magnet.svg \
+ images/qt_logo.png
+
+qml_resources.prefix = /qt/qml/SensorShowcaseModule
+
+data_resources.files = \
+ qtquickcontrols2.conf
+
+data_resources.prefix = /
+
+RESOURCES += \
+ qml_resources \
+ data_resources
+
+android {
+ OTHER_FILES = android/AndroidManifest.xml
+ ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
+}
+
+ios {
+ QMAKE_INFO_PLIST = Info.plist
+ EXAMPLE_FILES += Info.plist
+}
+
+target.path = $$[QT_INSTALL_EXAMPLES]/sensors/sensorsshowcase
+INSTALLS += target