Vibration when hitting rocks and octopuses
[ghostsoverboard] / ghostsoverboard.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2011-05-03T17:35:02
4 #
5 #-------------------------------------------------
6
7 QT       += core gui
8 QT      += dbus
9
10 TARGET = ghostsoverboard
11 TEMPLATE = app
12
13
14 SOURCES += main.cpp\
15         mainwindow.cpp \
16     orientationcontrolledgraphicspixmapobject.cpp \
17     seascene.cpp \
18     seaview.cpp \
19     ship.cpp \
20     screenlitkeeper.cpp \
21     timercontrolledgraphicspixmapobject.cpp \
22     octopus.cpp
23
24 HEADERS  += mainwindow.h \
25     orientationcontrolledgraphicspixmapobject.h \
26     seascene.h \
27     seaview.h \
28     ship.h \
29     screenlitkeeper.h \
30     timercontrolledgraphicspixmapobject.h \
31     octopus.h
32
33 CONFIG += mobility
34 MOBILITY = sensors
35 MOBILITY += systeminfo
36
37 symbian {
38     TARGET.UID3 = 0xe3f4bbc2
39     # TARGET.CAPABILITY += 
40     TARGET.EPOCSTACKSIZE = 0x14000
41     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
42 }
43
44 unix:!symbian {
45     maemo5 {
46         target.path = /opt/usr/bin
47     } else {
48         target.path = /usr/local/bin
49     }
50     INSTALLS += target
51 }
52
53 RESOURCES += \
54     orientationcontrol2pix.qrc
55
56 maemo5 {
57     desktopfile.files = $${TARGET}.desktop
58     desktopfile.path = /usr/share/applications/hildon
59     INSTALLS += desktopfile
60
61
62 }
63
64 maemo5 {
65     icon.files = ghostsoverboard.png
66     icon.path = /usr/share/icons/hicolor/64x64/apps
67     INSTALLS += icon
68 }