summaryrefslogtreecommitdiffstats
path: root/examples/declarative/demos/snake/snake.qmlproject
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@digia.com>2013-06-13 15:13:32 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-16 12:41:51 +0200
commit27d22c5f4201c7555b42e187252bee3fd88d3821 (patch)
tree8977189090a5977884558634b99233fff62d175a /examples/declarative/demos/snake/snake.qmlproject
parent82ffec0b3daab59c96b5f1d5963566bd9418766e (diff)
Doc: Move Qt Quick 1 demos and their documentationold/5.1
When installing the examples, we currently end up with a QT_INSTALL_EXAMPLES/demos directory with nothing but documentation files. This change moves the docs and also the demos themselves into examples/declarative/demos. Also fixes the links in demo .qdoc files. Task-number: QTBUG-31722 Change-Id: Ied15526be1db8437e14be786ea69eae98af8dd3f Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'examples/declarative/demos/snake/snake.qmlproject')
-rw-r--r--examples/declarative/demos/snake/snake.qmlproject16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/declarative/demos/snake/snake.qmlproject b/examples/declarative/demos/snake/snake.qmlproject
new file mode 100644
index 00000000..431d2a9e
--- /dev/null
+++ b/examples/declarative/demos/snake/snake.qmlproject
@@ -0,0 +1,16 @@
+import QmlProject 1.0
+
+Project {
+ /* Include .qml, .js, and image files from current directory and subdirectories */
+ QmlFiles {
+ directory: "qml/snake"
+ }
+ JavaScriptFiles {
+ directory: "qml/snake"
+ }
+ ImageFiles {
+ directory: "qml/snake"
+ }
+ /* List of plugin directories passed to QML runtime */
+ // importPaths: [ " ../exampleplugin " ]
+}