summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/extending/chapter5-plugins/chapter5-plugins.pro
blob: 483da8fc9aed94bf967143e8c4e33e65e26e4a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TEMPLATE = lib
CONFIG += qt plugin
QT += declarative

DESTDIR = lib
OBJECTS_DIR = tmp
MOC_DIR = tmp

HEADERS += musician.h \
           instrument.h \
           musicplugin.h

SOURCES += musician.cpp \
           instrument.cpp \
           musicplugin.cpp

symbian {
    include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
    TARGET.EPOCALLOWDLLDATA = 1
}