blob: cc7b4de94c3f8bd2195a132188b254e5e8e29d7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
HEADERS = domitem.h \
dommodel.h \
mainwindow.h
SOURCES = domitem.cpp \
dommodel.cpp \
main.cpp \
mainwindow.cpp
CONFIG += qt
QT += xml
# install
target.path = $$[QT_INSTALL_EXAMPLES]/itemviews/simpledommodel
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/itemviews/simpledommodel
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|