18 lines
507 B
Prolog
18 lines
507 B
Prolog
TEMPLATE = app
|
|
TARGET = attached
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += .
|
|
QT += declarative
|
|
|
|
# Input
|
|
SOURCES += main.cpp \
|
|
person.cpp \
|
|
birthdayparty.cpp
|
|
HEADERS += person.h \
|
|
birthdayparty.h
|
|
RESOURCES += attached.qrc
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/extending/attached
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS attached.pro
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/declarative/extending/attached
|
|
INSTALLS += target sources
|