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