blob: 869cde35afd42a5715428045fd031331f8094d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
TEMPLATE = app
TARGET = objectlistmodel
DEPENDPATH += .
INCLUDEPATH += .
QT += declarative
# Input
SOURCES += main.cpp \
dataobject.cpp
HEADERS += dataobject.h
RESOURCES += objectlistmodel.qrc
sources.files = $$SOURCES $$HEADERS $$RESOURCES objectlistmodel.pro view.qml
sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/objectlistmodel
target.path = $$[QT_INSTALL_EXAMPLES]/declarative/objectlistmodel
INSTALLS += sources target
|