Merge branch 'levelstructure'
[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     level.cpp
24
25 HEADERS  += mainwindow.h \
26     orientationcontrolledgraphicspixmapobject.h \
27     seascene.h \
28     seaview.h \
29     ship.h \
30     screenlitkeeper.h \
31     timercontrolledgraphicspixmapobject.h \
32     octopus.h \
33     level.h
34
35 CONFIG += mobility
36 MOBILITY = sensors
37 MOBILITY += systeminfo
38
39 symbian {
40     TARGET.UID3 = 0xe3f4bbc2
41     # TARGET.CAPABILITY += 
42     TARGET.EPOCSTACKSIZE = 0x14000
43     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
44 }
45
46 unix:!symbian {
47     maemo5 {
48         target.path = /opt/usr/bin
49     } else {
50         target.path = /usr/local/bin
51     }
52     INSTALLS += target
53 }
54
55 RESOURCES += \
56     orientationcontrol2pix.qrc
57
58 maemo5 {
59     desktopfile.files = $${TARGET}.desktop
60     desktopfile.path = /usr/share/applications/hildon
61     INSTALLS += desktopfile
62
63
64 }
65
66 maemo5 {
67     icon.files = ghostsoverboard.png
68     icon.path = /usr/share/icons/hicolor/64x64/apps
69     INSTALLS += icon
70 }