summaryrefslogtreecommitdiffstats
path: root/chicken-wranglers/examples/control/control.pro
blob: f945f5ecf9d18480733b4bfa81e8d7b9a45abbdb (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
40
41
42
43
44
45
46
47
48
49
50
51
TEMPLATE = app

TARGET = control_example

QT += declarative

maemo5 {
    CONFIG += mobility12
} else {
    CONFIG += mobility
}

MOBILITY += sensors

INCLUDEPATH += $$PWD/../../src/control \
               $$PWD/../../src/utils

SOURCES += \
    main.cpp \
    $$PWD/../../src/control/control.cpp \
    $$PWD/../../src/control/sensormovement.cpp \
    $$PWD/../../src/utils/global.cpp \
    $$PWD/../../src/utils/screen.cpp
HEADERS += \
    $$PWD/../../src/control/control.h \
    $$PWD/../../src/control/sensormovement.h \
    $$PWD/../../src/utils/global.h \
    $$PWD/../../src/utils/screen.h \
    testcontrol.h

RESOURCES += qml/qml.qrc

symbian {
    TARGET.UID3 = 0xE9131533

    TARGET.CAPABILITY = \
        ReadUserData \
        UserEnvironment \
        WriteUserData

    TARGET.EPOCHEAPSIZE = 0x20000 0x8000000

    TARGET.EPOCSTACKSIZE = 0x14000


    LIBS += \
        -lavkon \
        -leikcore \
        -lcone

}