blob: 4213cd7a9f2ac4697e26275eb4a80dd822e20471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|