aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2018-10-15 12:55:42 +0200
committerKai Koehne <kai.koehne@qt.io>2018-10-15 14:29:21 +0000
commit53240b099cf801ec51e5facdf159e35a3fef2cd9 (patch)
treeb04c2241a1c2601ea805ddc392e02ddc9e1b8bc6 /examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
parentc3c988e186d2c3bc2480191ed5c62acd128b5f7b (diff)
Remove old 'Getting started with Qt Quick' example
The example is actually not very easy to build, and arguably too complex for a 'getting started' example. qtdoc commit 1df7011858 therefore replaced it by the alarms example in the documentation. Task-number: QTBUG-66064 Change-Id: I2f2776c649410575aef71948f64b358d60233022 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> Reviewed-by: Nico Vertriest <nico.vertriest@qt.io>
Diffstat (limited to 'examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro')
-rw-r--r--examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro b/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
deleted file mode 100644
index 8f8f4549aa..0000000000
--- a/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
+++ /dev/null
@@ -1,28 +0,0 @@
-TEMPLATE = lib
-CONFIG += plugin
-QT += qml
-
-DESTDIR += ../imports/FileDialog
-OBJECTS_DIR = tmp
-MOC_DIR = tmp
-
-TARGET = filedialogplugin
-
-HEADERS += \
- directory.h \
- file.h \
- dialogPlugin.h
-
-SOURCES += \
- directory.cpp \
- file.cpp \
- dialogPlugin.cpp
-
-EXAMPLE_FILES += qmldir
-
-# Copy the qmldir file to the same folder as the plugin binary
-cpqmldir.files = $$PWD/qmldir
-cpqmldir.path = $$DESTDIR
-COPIES += cpqmldir
-
-CONFIG += install_ok # Do not cargo-cult this!