diff -r 93b982ccede2 -r 5daf16870df6 examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro Thu Jul 22 16:41:55 2010 +0100 @@ -0,0 +1,20 @@ +TEMPLATE = lib +CONFIG += qt plugin +QT += declarative + +HEADERS += musician.h \ + instrument.h \ + musicplugin.h + +SOURCES += musician.cpp \ + instrument.cpp \ + musicplugin.cpp + +DESTDIR = lib +OBJECTS_DIR = tmp +MOC_DIR = tmp + +symbian { + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) + TARGET.EPOCALLOWDLLDATA = 1 +}