f13b0b2cf2
Compiling the default examples should be possible without compile errors. Task-number: QTBUG-53141 Change-Id: I73d8787241291ae6230861a89b38e91d900fede0 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
18 lines
357 B
Prolog
18 lines
357 B
Prolog
QT += widgets
|
|
requires(qtConfig(undoview))
|
|
|
|
SOURCES += main.cpp mainwindow.cpp commands.cpp document.cpp
|
|
HEADERS += mainwindow.h commands.h document.h
|
|
FORMS += mainwindow.ui
|
|
|
|
build_all:!build_pass {
|
|
CONFIG -= build_all
|
|
CONFIG += release
|
|
}
|
|
|
|
RESOURCES += undo.qrc
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/tools/undo
|
|
INSTALLS += target
|