Keeps screen lit and pauses when app is backgrounded
[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     timercontrolledtursas.cpp \
17     seascene.cpp \
18     seaview.cpp \
19     ship.cpp \
20     screenlitkeeper.cpp
21
22 HEADERS  += mainwindow.h \
23     orientationcontrolledgraphicspixmapobject.h \
24     timercontrolledtursas.h \
25     seascene.h \
26     seaview.h \
27     ship.h \
28     screenlitkeeper.h
29
30 CONFIG += mobility
31 MOBILITY = sensors
32 MOBILITY += systeminfo
33
34 symbian {
35     TARGET.UID3 = 0xe3f4bbc2
36     # TARGET.CAPABILITY += 
37     TARGET.EPOCSTACKSIZE = 0x14000
38     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
39 }
40
41 unix:!symbian {
42     maemo5 {
43         target.path = /opt/usr/bin
44     } else {
45         target.path = /usr/local/bin
46     }
47     INSTALLS += target
48 }
49
50 RESOURCES += \
51     orientationcontrol2pix.qrc
52
53 maemo5 {
54     desktopfile.files = $${TARGET}.desktop
55     desktopfile.path = /usr/share/applications/hildon
56     INSTALLS += desktopfile
57
58
59 }
60
61 maemo5 {
62     icon.files = ghostsoverboard.png
63     icon.path = /usr/share/icons/hicolor/64x64/apps
64     INSTALLS += icon
65 }