1QT = core qml
2CONFIG += qmltypes
3
4QML_IMPORT_NAME = People
5QML_IMPORT_MAJOR_VERSION = 1
6
7SOURCES += main.cpp \
8           person.cpp
9HEADERS += person.h
10RESOURCES += adding.qrc
11
12target.path = $$[QT_INSTALL_EXAMPLES]/qml/referenceexamples/adding
13INSTALLS += target
14