aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/customitems/painteditem/painteditem.pro
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2012-08-09 11:24:20 +1000
committerQt by Nokia <qt-info@nokia.com>2012-08-10 08:56:59 +0200
commit0f04787ffb587a979386bcce432dd181ac3a06db (patch)
tree6919bdce9ab0f354b66d9b569bbe6f8dcb524642 /examples/quick/customitems/painteditem/painteditem.pro
parent4350877d6deb58f36df24164c6edde3302a3f1a3 (diff)
More consistent examples directory structure
Under examples the next directory level distinguishes imports/modules and the next directory level distinguishes examples. Change-Id: Icabadaac6ccb9c1c424efa9c9e64a7d94bc7c0da Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
Diffstat (limited to 'examples/quick/customitems/painteditem/painteditem.pro')
-rw-r--r--examples/quick/customitems/painteditem/painteditem.pro25
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/quick/customitems/painteditem/painteditem.pro b/examples/quick/customitems/painteditem/painteditem.pro
new file mode 100644
index 0000000000..9526817146
--- /dev/null
+++ b/examples/quick/customitems/painteditem/painteditem.pro
@@ -0,0 +1,25 @@
+TEMPLATE = lib
+CONFIG += qt plugin
+QT += qml quick
+
+TARGET = qmltextballoonplugin
+
+HEADERS += TextBalloonPlugin/plugin.h \
+ textballoon.h
+
+SOURCES += textballoon.cpp
+
+OTHER_FILES += textballoon.json
+
+DESTDIR = TextBalloonPlugin
+
+qdeclarativesources.files += \
+ TextBalloonPlugin/qmldir
+
+qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem/TextBalloonPlugin
+
+sources.files = textballoons.qml
+sources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem
+target.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem/TextBalloonPlugin
+
+INSTALLS = qdeclarativesources sources target