1TEMPLATE = app
2TARGET = properties
3DEPENDPATH += .
4INCLUDEPATH += .
5QT += declarative
6
7# Input
8SOURCES += main.cpp \
9           person.cpp \
10           birthdayparty.cpp
11HEADERS += person.h \
12           birthdayparty.h
13RESOURCES += properties.qrc
14
15target.path = $$[QT_INSTALL_EXAMPLES]/declarative/cppextensions/referenceexamples/properties
16sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS properties.pro
17sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/cppextensions/referenceexamples/properties
18INSTALLS += target sources
19