aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/qmlextensionplugins/qmlextensionplugins.pro
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2013-08-08 17:42:48 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-09 12:46:05 +0200
commitfc665d512736e1249480a835e26410a92939e535 (patch)
tree89bfa6eaf3a86382add3c27c20a5ade414d1c950 /examples/qml/qmlextensionplugins/qmlextensionplugins.pro
parent84a4d5d9fe57af1091c4c36eabf8a674d7140bac (diff)
Doc: Moved QML "plugins" example to "qmlextensionplugins"
The example generates a plugins.html which collides with the plugins.html from qtbase repository. Task-number: QTBUG-32580 Change-Id: I47ce9e00378738f7696672e6e47dd3337bb4fafc Reviewed-by: Martin Smith <martin.smith@digia.com> Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'examples/qml/qmlextensionplugins/qmlextensionplugins.pro')
-rw-r--r--examples/qml/qmlextensionplugins/qmlextensionplugins.pro23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/qml/qmlextensionplugins/qmlextensionplugins.pro b/examples/qml/qmlextensionplugins/qmlextensionplugins.pro
new file mode 100644
index 0000000000..64fd23af8d
--- /dev/null
+++ b/examples/qml/qmlextensionplugins/qmlextensionplugins.pro
@@ -0,0 +1,23 @@
+TEMPLATE = lib
+CONFIG += plugin
+QT += qml
+
+DESTDIR = imports/TimeExample
+TARGET = qmlqtimeexampleplugin
+
+SOURCES += plugin.cpp
+
+pluginfiles.files += \
+ imports/TimeExample/qmldir \
+ imports/TimeExample/center.png \
+ imports/TimeExample/clock.png \
+ imports/TimeExample/Clock.qml \
+ imports/TimeExample/hour.png \
+ imports/TimeExample/minute.png
+
+qml.files = plugins.qml
+qml.path += $$[QT_INSTALL_EXAMPLES]/qml/qmlextensionplugins
+target.path += $$[QT_INSTALL_EXAMPLES]/qml/qmlextensionplugins/imports/TimeExample
+pluginfiles.path += $$[QT_INSTALL_EXAMPLES]/qml/qmlextensionplugins/imports/TimeExample
+
+INSTALLS += target qml pluginfiles