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

DESTDIR = lib
OBJECTS_DIR = tmp
MOC_DIR = tmp

HEADERS += piechart.h \
           pieslice.h \
           chartsplugin.h

SOURCES += piechart.cpp \
           pieslice.cpp \
           chartsplugin.cpp

target.path = $$[QT_INSTALL_EXAMPLES]/declarative/tutorials/extending/chapter6-plugins
qml.files = app.qml qmldir
qml.path = $$[QT_INSTALL_EXAMPLES]/declarative/tutorials/extending/chapter6-plugins
INSTALLS += target qml