Initial commit
[vexed] / qexed.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2010-06-17T09:17:07
4 #
5 #-------------------------------------------------
6
7 QT       += core gui
8
9 TARGET = qexed
10 TEMPLATE = app
11
12
13 SOURCES += main.cpp\
14         mainwindow.cpp \
15     playfield.cpp \
16     fieldview.cpp \
17     levelpack.cpp \
18     iconset.cpp \
19     preferences.cpp \
20     howtoplay.cpp
21
22 HEADERS  += mainwindow.h \
23     playfield.h \
24     fieldview.h \
25     levelpack.h \
26     iconset.h \
27     preferences.h \
28     howtoplay.h
29
30 FORMS    += mainwindow.ui \
31     preferences.ui \
32     howtoplay.ui
33
34 CONFIG += mobility
35 MOBILITY = 
36
37 symbian {
38     TARGET.UID3 = 0xe9d84f35
39     # TARGET.CAPABILITY += 
40     TARGET.EPOCSTACKSIZE = 0x14000
41     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
42 }
43
44 OTHER_FILES += \
45     block8.bmp \
46     block7.bmp \
47     block6.bmp \
48     block5.bmp \
49     block4.bmp \
50     block3.bmp \
51     block2.bmp \
52     block1.bmp \
53     qexed.desktop \
54     howtoplay.txt
55
56 RESOURCES += \
57     media.qrc
58
59 maemo5|maemo6 {
60     target.path = /opt/bin
61     INSTALLS += target
62 }