blob: 7fa85072c38909ce618fc5c324ea1182ffb9cd56 (
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
|
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
include($$QT_SOURCE_TREE/examples/examplebase.pri)
CONFIG += console
symbian:TARGET.UID3 = 0xA000A644
|