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