mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
17 lines
304 B
Prolog
17 lines
304 B
Prolog
|
TEMPLATE = app
|
||
|
QT += widgets
|
||
|
requires(qtConfig(treeview))
|
||
|
|
||
|
HEADERS += model.h
|
||
|
SOURCES += model.cpp main.cpp
|
||
|
RESOURCES += interview.qrc
|
||
|
|
||
|
build_all:!build_pass {
|
||
|
CONFIG -= build_all
|
||
|
CONFIG += release
|
||
|
}
|
||
|
|
||
|
# install
|
||
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/itemviews/interview
|
||
|
INSTALLS += target
|