blob: cb09b90076d0480893b9a228ed23886af88e2b90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
HEADERS += \
panel.h \
roundrectitem.h \
splashitem.h
SOURCES += \
panel.cpp \
roundrectitem.cpp \
splashitem.cpp \
main.cpp
RESOURCES += \
padnavigator.qrc
FORMS += \
backside.ui
contains(QT_CONFIG, opengl):QT += opengl
# install
target.path = $$[QT_INSTALL_EXAMPLES]/graphicsview/padnavigator
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS padnavigator.pro images
sources.path = $$[QT_INSTALL_EXAMPLES]/graphicsview/padnavigator
INSTALLS += target sources
CONFIG += console
symbian {
include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
TARGET.UID3 = 0xA000A644
}
|