summaryrefslogtreecommitdiff
path: root/examples/qml/tutorials/extending-qml-advanced/advanced7-Foreign-objects-integration/application.pro
blob: b53397d49ce6597d774195184c9569e989d62a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
TEMPLATE = app

CONFIG += console

QT += core qml

DEPENDPATH += library
INCLUDEPATH += library
LIBS += -Llibrary/ -llibrary

SOURCES += \
    birthdayparty.cpp \
    happybirthdaysong.cpp \
    main.cpp \
    person.cpp
HEADERS += \
    birthdayparty.h \
    foreigndisplay.h \
    happybirthdaysong.h \
    person.h

CONFIG += qmltypes
QML_IMPORT_NAME = People
QML_IMPORT_MAJOR_VERSION = 1

RESOURCES += foreign.qrc