mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
21 lines
405 B
Prolog
21 lines
405 B
Prolog
|
QT += widgets
|
||
|
requires(qtConfig(fontcombobox))
|
||
|
|
||
|
HEADERS = mainwindow.h \
|
||
|
diagramitem.h \
|
||
|
diagramscene.h \
|
||
|
arrow.h \
|
||
|
diagramtextitem.h
|
||
|
SOURCES = mainwindow.cpp \
|
||
|
diagramitem.cpp \
|
||
|
main.cpp \
|
||
|
arrow.cpp \
|
||
|
diagramtextitem.cpp \
|
||
|
diagramscene.cpp
|
||
|
RESOURCES = diagramscene.qrc
|
||
|
|
||
|
|
||
|
# install
|
||
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/graphicsview/diagramscene
|
||
|
INSTALLS += target
|