Fixed bug when block can slide over the same one
[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     settings.cpp \
22     needadvance.cpp \
23     about.cpp \
24     solutionwindow.cpp
25
26 HEADERS  += mainwindow.h \
27     playfield.h \
28     fieldview.h \
29     levelpack.h \
30     iconset.h \
31     preferences.h \
32     howtoplay.h \
33     settings.h \
34     needadvance.h \
35     about.h \
36     solutionwindow.h
37
38 FORMS    += mainwindow.ui \
39     preferences.ui \
40     howtoplay.ui \
41     needadvance.ui \
42     about.ui \
43     solutionwindow.ui
44
45 CONFIG += mobility
46 MOBILITY = 
47
48 symbian {
49     TARGET.UID3 = 0xe9d84f35
50     # TARGET.CAPABILITY += 
51     TARGET.EPOCSTACKSIZE = 0x14000
52     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
53 }
54
55 OTHER_FILES += \
56     block8.bmp \
57     block7.bmp \
58     block6.bmp \
59     block5.bmp \
60     block4.bmp \
61     block3.bmp \
62     block2.bmp \
63     block1.bmp \
64     qexed.desktop \
65     howtoplay.txt
66
67 RESOURCES += \
68     media.qrc
69
70 maemo5|maemo6 {
71     target.path = /opt/bin
72     INSTALLS += target
73 }