6c3f864ec0
Task-number: QTBUG-65735 Change-Id: I7e0d19de4ac92603f2fd033007343f20a408618a Reviewed-by: Nico Vertriest <nico.vertriest@qt.io>
22 lines
325 B
Prolog
22 lines
325 B
Prolog
TEMPLATE = app
|
|
TARGET = notepad
|
|
|
|
qtHaveModule(printsupport): QT += printsupport
|
|
requires(qtConfig(fontdialog))
|
|
|
|
SOURCES += \
|
|
main.cpp\
|
|
notepad.cpp
|
|
|
|
HEADERS += notepad.h
|
|
|
|
FORMS += notepad.ui
|
|
|
|
RESOURCES += \
|
|
notepad.qrc
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/tutorials/notepad
|
|
INSTALLS += target
|
|
|