mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-01-10 00:50:15 +02:00
34 lines
724 B
Prolog
34 lines
724 B
Prolog
HEADERS = mainwindow.h \
|
|
diagramitem.h \
|
|
diagramscene.h \
|
|
arrow.h \
|
|
diagramtextitem.h \
|
|
lineitem.h
|
|
SOURCES = mainwindow.cpp \
|
|
diagramitem.cpp \
|
|
main.cpp \
|
|
arrow.cpp \
|
|
diagramtextitem.cpp \
|
|
diagramscene.cpp \
|
|
lineitem.cpp
|
|
RESOURCES = diagramscene.qrc
|
|
|
|
TARGET = diagrameditor
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/graphicsview/diagramscene
|
|
sources.files = $$SOURCES \
|
|
$$HEADERS \
|
|
$$RESOURCES \
|
|
$$FORMS \
|
|
diagramscene.pro \
|
|
images
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/graphicsview/diagramscene
|
|
INSTALLS += target \
|
|
sources
|
|
symbian:include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
|
|
QT += xml \
|
|
svg \
|
|
network
|
|
FORMS += librarydialog.ui
|