blob: 941bee67b2dc95a88151d6833690662c874f371a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FORMS = mainwindow.ui
HEADERS = mainwindow.h \
treeitem.h \
treemodel.h
RESOURCES = editabletreemodel.qrc
SOURCES = mainwindow.cpp \
treeitem.cpp \
treemodel.cpp \
main.cpp
CONFIG += qt
# install
target.path = $$[QT_INSTALL_EXAMPLES]/itemviews/editabletreemodel
sources.files = $$FORMS $$HEADERS $$RESOURCES $$SOURCES *.pro *.txt
sources.path = $$[QT_INSTALL_EXAMPLES]/itemviews/editabletreemodel
INSTALLS += target sources
symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
maemo5: include($$QT_SOURCE_TREE/examples/maemo5pkgrules.pri)
|