examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:41:55 +0100
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
permissions -rw-r--r--
Catchup to latest Symbian^4

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
}