summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qtcluster/qtcluster-base.pro
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2018-05-14 12:58:59 +0200
committerJani Heikkinen <jani.heikkinen@qt.io>2018-05-14 14:35:46 +0000
commit8a0244d3f46c1eb9904d9da7e741bb2e05ca3f3d (patch)
tree5732f820d9a0fca8d4556511ba5809c2be2f8805 /doc/src/snippets/qtcluster/qtcluster-base.pro
parent63f18077b2e8b4045c92248e86ed1ee2122cbd75 (diff)
Remove the qtcluster demo
The license checker of the CI spotted deviating license headers in the demo. In addition, in it current state, the demo lacks any polishing. Let's remove it. Task-number: QTBUG-67529 Change-Id: Ic9375deb0a889e2e7e96e874b62fbc314269e455 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'doc/src/snippets/qtcluster/qtcluster-base.pro')
-rw-r--r--doc/src/snippets/qtcluster/qtcluster-base.pro109
1 files changed, 0 insertions, 109 deletions
diff --git a/doc/src/snippets/qtcluster/qtcluster-base.pro b/doc/src/snippets/qtcluster/qtcluster-base.pro
deleted file mode 100644
index 69f914e57..000000000
--- a/doc/src/snippets/qtcluster/qtcluster-base.pro
+++ /dev/null
@@ -1,109 +0,0 @@
-TEMPLATE = app
-TARGET = qtcluster
-INCLUDEPATH += .
-QT += quick
-
-# Enable for static version
-#CONFIG += static
-#DEFINES += STATIC
-
-CONFIG += SPORTS_CAR
-CONFIG += HYBRID_CAR
-
-#Enable compile flags based on config flags
-SPORTS_CAR: DEFINES += SPORTS_CAR
-HYBRID_CAR: DEFINES += HYBRID_CAR
-
-qtHaveModule(3drender) {
-QT += 3dcore 3drender 3dquick 3dquick-private
-HEADERS += \
- scenehelper.h
-SOURCES += \
- scenehelper.cpp
-}
-
-CONFIG += resources_big
-
-SOURCES += \
- main.cpp \
- gauge.cpp \
- gaugenode.cpp \
- qtiviclusterdata.cpp \
- etcprovider.cpp \
- circularindicator.cpp
-
-DEFINES += NO_NETWORK
-
-RESOURCES += \
- qtcluster.qrc \
-
-RESOURCES += images.qrc
-
-SPORTS_CAR: {
- RESOURCES += sportsqml.qrc
-
- RESOURCES += sportscar_15k.qrc
- RESOURCES += sportsimages.qrc
-}
-
-HYBRID_CAR: {
- RESOURCES += \
- hybridqml.qrc
-
-RESOURCES += hybridimages.qrc
-}
-
-RESOURCES += iso-icons.qrc
-
-ISO_ICONS = \
- iso_grs_7000_4_0083 \
- iso_grs_7000_4_1434A \
- iso_grs_7000_4_0246 \
- iso_grs_7000_4_0245 \
- iso_grs_7000_4_0247 \
- iso_grs_7000_4_1555 \
- iso_grs_7000_4_1702 \
- iso_grs_7000_4_0249 \
- iso_grs_7000_4_0238 \
- iso_grs_7000_4_0456
-
-
-OTHER_FILES += \
- qml/* \
- qml/dash_sports/* \
- qml/dash_hybrid/* \
- qml/dash_hybrid/gauges/* \
- qml/dash_safety/* \
-
-#win32 | win64: {
-# deploy.path = $$OUT_PWD
-#} else {
- deploy.path = /data/user/qt
-#}
-
-#message($$deploy.path)
-
-#qml_data.files += qml/*
-#qml_data.path = $$deploy.path/$$TARGET/qml
-#font_data.files += fonts/*
-#font_data.path = $$deploy.path/$$TARGET/fonts
-#image_data.files += images/*
-#image_data.path = $$deploy.path/$$TARGET/images
-target.path = $$deploy.path/$$TARGET
-INSTALLS += \
- target \
-# video_data \
-# qml_data \
-# font_data \
-# image_data
-
-HEADERS += \
- gauge.h \
- gaugenode.h \
- qtiviclusterdata.h \
- etcprovider.h \
- circularindicator.h
-
-macos: QMAKE_INFO_PLIST = Info-macos.plist
-ios|tvos: QMAKE_INFO_PLIST = Info-ios.plist
-