Pick-to: 6.5 6.6 Change-Id: Ic3189044598be8e121c1f065e68e04a3547a87d0 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
23 lines
456 B
Prolog
23 lines
456 B
Prolog
QT += widgets
|
|
requires(qtConfig(filedialog))
|
|
qtHaveModule(printsupport): QT += printsupport
|
|
|
|
TEMPLATE = app
|
|
TARGET = textedit
|
|
|
|
HEADERS = textedit.h
|
|
SOURCES = textedit.cpp \
|
|
main.cpp
|
|
|
|
RESOURCES += textedit.qrc
|
|
build_all:!build_pass {
|
|
CONFIG -= build_all
|
|
CONFIG += release
|
|
}
|
|
|
|
EXAMPLE_FILES = textedit.qdoc
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/richtext/textedit
|
|
INSTALLS += target
|