aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@digia.com>2014-09-26 15:00:14 +0200
committerTopi Reiniƶ <topi.reinio@digia.com>2014-09-30 12:33:22 +0200
commitfccf0e29120f64a8b9b2a15b33971a648ab190e7 (patch)
tree5e68eea9f4303408c93771596a28031de060e8cf /examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro
parentc2c710e5a8d66fa696276aa69c2e3b00436eefe5 (diff)
Doc: Combine the extending QML tutorial chapters into a single example
Combine the six examples associated with each tutorial chapter into a single, top-level example project 'extending-qml', with subprojects for each of the tutorial chapters. Clean up the docs, add links, and a note about a warning that the user may see when running the code in the first chapter. Task-number: QTBUG-32947 Change-Id: Idba4e2153817ab29f1afaf1947d1f2e25964e7b3 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro')
-rw-r--r--examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro b/examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro
new file mode 100644
index 0000000000..9911e02484
--- /dev/null
+++ b/examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro
@@ -0,0 +1,15 @@
+QT += qml quick
+
+HEADERS += piechart.h
+SOURCES += piechart.cpp \
+ main.cpp
+
+RESOURCES += chapter1-basics.qrc
+
+DESTPATH = $$[QT_INSTALL_EXAMPLES]/qml/tutorials/extending-qml/chapter1-basics
+target.path = $$DESTPATH
+
+qml.files = *.qml
+qml.path = $$DESTPATH
+
+INSTALLS += target qml