mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
17 lines
421 B
Prolog
17 lines
421 B
Prolog
|
QT += widgets
|
||
|
requires(qtConfig(tableview))
|
||
|
qtHaveModule(printsupport): QT += printsupport
|
||
|
|
||
|
HEADERS = imagemodel.h \
|
||
|
mainwindow.h \
|
||
|
pixeldelegate.h
|
||
|
SOURCES = imagemodel.cpp \
|
||
|
main.cpp \
|
||
|
mainwindow.cpp \
|
||
|
pixeldelegate.cpp
|
||
|
RESOURCES += images.qrc
|
||
|
|
||
|
# install
|
||
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/itemviews/pixelator
|
||
|
INSTALLS += target
|