2017-11-13 10:54:48 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
TARGET = notepad
|
|
|
|
|
2020-03-05 09:06:24 +00:00
|
|
|
QT += widgets
|
|
|
|
|
2018-01-15 07:59:09 +00:00
|
|
|
qtHaveModule(printsupport): QT += printsupport
|
2018-01-08 12:43:04 +00:00
|
|
|
requires(qtConfig(fontdialog))
|
2017-11-13 10:54:48 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|