blob: 65dd27213b46c4f1914cc4b7c6822d2133e7e0ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
QT = core qml
CONFIG += qmltypes
QML_IMPORT_NAME = People
QML_IMPORT_MAJOR_VERSION = 1
SOURCES += main.cpp \
person.cpp \
birthdayparty.cpp
HEADERS += person.h \
birthdayparty.h
RESOURCES += default.qrc
|