mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
24 lines
340 B
Prolog
24 lines
340 B
Prolog
|
TEMPLATE = app
|
||
|
TARGET = notepad
|
||
|
|
||
|
QT += widgets
|
||
|
|
||
|
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
|
||
|
|