aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tutorials/extending/chapter6-plugins/chapter6-plugins.pro
blob: 75f88b2eaae14cad7ef106e1cd81fc4db58a36a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
TEMPLATE = lib
CONFIG += qt plugin
QT += qml quick

DESTDIR = ChartsPlugin
TARGET = chartsplugin

OBJECTS_DIR = tmp
MOC_DIR = tmp

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

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