summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/extending/chapter6-plugins/chapter6-plugins.pro
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-07-15 14:04:26 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-07-15 14:04:26 (GMT)
commit73ae54ce26562ff3eab33fc142b3ec94c2913810 (patch)
tree89c38eebd366ee25e40a16c1daccd5fa78ae7fb9 /examples/declarative/tutorials/extending/chapter6-plugins/chapter6-plugins.pro
parent03c01176ebf423085e56ceabcf8335ca5027a786 (diff)
parent5893e05aa453f1ecbc0ee35d5fca5d671828dfc2 (diff)
downloadQt-73ae54ce26562ff3eab33fc142b3ec94c2913810.zip
Qt-73ae54ce26562ff3eab33fc142b3ec94c2913810.tar.gz
Qt-73ae54ce26562ff3eab33fc142b3ec94c2913810.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Fix .pro file Add files missing from last commit fix doc link Add chapter on creating list property types fix spelling Change tutorial from using "Musician" etc. types to using "PieChart" Text element does not clip even with clip=true
Diffstat (limited to 'examples/declarative/tutorials/extending/chapter6-plugins/chapter6-plugins.pro')
-rw-r--r--examples/declarative/tutorials/extending/chapter6-plugins/chapter6-plugins.pro20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/declarative/tutorials/extending/chapter6-plugins/chapter6-plugins.pro b/examples/declarative/tutorials/extending/chapter6-plugins/chapter6-plugins.pro
new file mode 100644
index 0000000..1ffbf29
--- /dev/null
+++ b/examples/declarative/tutorials/extending/chapter6-plugins/chapter6-plugins.pro
@@ -0,0 +1,20 @@
+TEMPLATE = lib
+CONFIG += qt plugin
+QT += declarative
+
+DESTDIR = lib
+OBJECTS_DIR = tmp
+MOC_DIR = tmp
+
+HEADERS += piechart.h \
+ pieslice.h \
+ chartsplugin.h
+
+SOURCES += piechart.cpp \
+ pieslice.cpp \
+ chartsplugin.cpp
+
+symbian {
+ include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
+ TARGET.EPOCALLOWDLLDATA = 1
+}