blob: 756a9c8d42d817ad13a27c19b0ffda2cf489b77d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
HEADERS += \
coloritem.h \
robot.h
SOURCES += \
coloritem.cpp \
main.cpp \
robot.cpp
RESOURCES += \
robot.qrc
# install
target.path = $$[QT_INSTALL_EXAMPLES]/graphicsview/dragdroprobot
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS dragdroprobot.pro images
sources.path = $$[QT_INSTALL_EXAMPLES]/graphicsview/dragdroprobot
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|