Added version number to .pro for mud2
[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 VERSION = 0.4.0
14
15 SOURCES += main.cpp\
16     orientationcontrolledgraphicspixmapobject.cpp \
17     seascene.cpp \
18     ship.cpp \
19     screenlitkeeper.cpp \
20     timercontrolledgraphicspixmapobject.cpp \
21     octopus.cpp \
22     level.cpp \
23     seaview.cpp \
24     levelset.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     levelset.h
36
37 CONFIG += mobility
38 MOBILITY = sensors
39 MOBILITY += systeminfo
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 unix:!symbian:!maemo5 {
89     desktopfile.files = $${TARGET}.desktop
90     desktopfile.path = /usr/share/applications
91     INSTALLS += desktopfile
92 }
93
94