summaryrefslogtreecommitdiffstats
path: root/examples/widgets/symbianvibration/symbianvibration.pro
blob: d99b76d9e10862908b6e47e98c17222b486e9cae (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
32
33
34
35
36
37
38
39
#-------------------------------------------------
#
# Project created by QtCreator 2010-06-14T10:09:27
#
#-------------------------------------------------

QT       += core gui

TARGET = symbianvibration
TEMPLATE = app


SOURCES += main.cpp\
        mainwindow.cpp \
        vibrationsurface.cpp \
        xqvibra.cpp \
        xqvibra_p.cpp

HEADERS  += mainwindow.h \
        vibrationsurface.h \
        xqvibra.h \
        xqvibra_p.h

CONFIG += mobility
MOBILITY = 

symbian {
    TARGET.UID3 = 0xecf47018
    # TARGET.CAPABILITY += 
    TARGET.EPOCSTACKSIZE = 0x14000
    TARGET.EPOCHEAPSIZE = 0x020000 0x800000
    LIBS += -lhwrmvibraclient
    include($$PWD/../../symbianpkgrules.pri)
}

!symbian {
    error(The Symbian Vibration Example only works for the Symbian target!)
}