Initial version
[quandoparte] / application / application.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2010-11-13T19:51:39
4 #
5 #-------------------------------------------------
6
7 QT += webkit network xml maemo5
8
9 TARGET = quandoparte
10 TEMPLATE = app
11
12 SOURCES += main.cpp \
13     settingsdialog.cpp \
14     stationview.cpp \
15     app.cpp \
16     stationlistview.cpp
17
18 HEADERS += \
19     settingsdialog.h \
20     stationview.h \
21     app.h \
22     stationlistview.h
23
24 FORMS += \
25     settingsdialog.ui \
26     stationlistview.ui
27
28 CONFIG += webkit mobility
29 MOBILITY = location bearer
30
31 symbian {
32     TARGET.UID3 = 0xe30fb688
33     # TARGET.CAPABILITY += 
34     TARGET.EPOCSTACKSIZE = 0x14000
35     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
36 }
37
38 OTHER_FILES += \
39     debian/changelog \
40     debian/compat \
41     debian/control \
42     debian/copyright \
43     debian/README \
44     debian/rules \
45     quandoparte.desktop \
46     icons/quandoparte.png
47
48 unix:!symbian {
49     maemo5 {
50         target.path = /opt/usr/bin
51     } else {
52         target.path = /usr/local/bin
53     }
54     INSTALLS += target
55 }
56
57 unix:!symbian {
58     desktopfile.files = $${TARGET}.desktop
59     maemo5 {
60         desktopfile.path = /usr/share/applications/hildon
61     } else {
62         desktopfile.path = /usr/share/applications
63     }
64     INSTALLS += desktopfile
65 }
66
67 unix:!symbian {
68     icon48.files = icons/48x48/$${TARGET}.png
69     icon64.files = icons/64x64/$${TARGET}.png
70     icon48.path = /usr/share/icons/hicolor/48x48/apps
71     icon64.path = /usr/share/icons/hicolor/64x64/apps
72     INSTALLS += icon48
73     INSTALLS += icon64
74 }