Added version to pro file for mud2 compatibility
[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 QT      += declarative
10
11 TARGET = ghostsoverboard
12 TEMPLATE = app
13 VERSION = 0.3.0
14
15
16 SOURCES += main.cpp\
17     orientationcontrolledgraphicspixmapobject.cpp \
18     seascene.cpp \
19     ship.cpp \
20     screenlitkeeper.cpp \
21     timercontrolledgraphicspixmapobject.cpp \
22     octopus.cpp \
23     level.cpp \
24     seaview.cpp
25
26 HEADERS  += \
27     orientationcontrolledgraphicspixmapobject.h \
28     seascene.h \
29     ship.h \
30     screenlitkeeper.h \
31     timercontrolledgraphicspixmapobject.h \
32     octopus.h \
33     level.h \
34     seaview.h
35
36 CONFIG += mobility
37 MOBILITY = sensors
38 MOBILITY += systeminfo
39 MOBILITY += feedback
40
41 symbian {
42     TARGET.UID3 = 0xe3f4bbc2
43     # TARGET.CAPABILITY += 
44     TARGET.EPOCSTACKSIZE = 0x14000
45     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
46 }
47
48 unix:!symbian {
49     maemo5 {
50         target.path = /opt/usr/bin
51     } else {
52         target.path = /usr/local/bin
53     }
54     INSTALLS += target
55 }
56
57 RESOURCES += \
58     orientationcontrol2pix.qrc
59
60 maemo5 {
61     desktopfile.files = $${TARGET}.desktop
62     desktopfile.path = /usr/share/applications/hildon
63     INSTALLS += desktopfile
64
65
66 }
67
68 maemo5 {
69     icon.files = ghostsoverboard.png
70     icon.path = /usr/share/icons/hicolor/64x64/apps
71     INSTALLS += icon
72 }
73
74 OTHER_FILES += \
75     qtc_packaging/debian_fremantle/rules \
76     qtc_packaging/debian_fremantle/README \
77     qtc_packaging/debian_fremantle/copyright \
78     qtc_packaging/debian_fremantle/control \
79     qtc_packaging/debian_fremantle/compat \
80     qtc_packaging/debian_fremantle/changelog \
81     qtc_packaging/debian_harmattan/rules \
82     qtc_packaging/debian_harmattan/README \
83     qtc_packaging/debian_harmattan/copyright \
84     qtc_packaging/debian_harmattan/control \
85     qtc_packaging/debian_harmattan/compat \
86     qtc_packaging/debian_harmattan/changelog \
87
88
89 unix:!symbian:!maemo5 {
90     desktopfile.files = $${TARGET}.desktop
91     desktopfile.path = /usr/share/applications
92     INSTALLS += desktopfile
93 }
94
95 unix:!symbian:!maemo5 {
96     icon.files = ghostsoverboard.svg
97     icon.path = /usr/share/icons/hicolor/scalable/apps
98     INSTALLS += icon
99 }
100