blob: 26c865fbbaf681f44ebafc4b0950ed4c2d231f5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 += baseproject.qrc
|