summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pro
blob: 505833722ac4edc2a5ad6cd40e968eb87d2e855f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
QT += widgets declarative

HEADERS += piechart.h \
           pieslice.h 
SOURCES += piechart.cpp \
           pieslice.cpp \
           main.cpp

# install
target.path = $$[QT_INSTALL_EXAMPLES]/qtquick1/declarative/tutorials/extending/chapter4-customPropertyTypes
sources.files = $$SOURCES $$HEADERS app.qml chapter4-customPropertyTypes.pro
sources.path = $$[QT_INSTALL_EXAMPLES]//qtquick1/declarative/tutorials/extending/chapter4-customPropertyTypes
INSTALLS += target sources