c195d6951a6f6fc51b9edfbcd90946308fd69a4f
[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     resources/quandoparte.css \
48     resources/arrivals.css \
49     resources/departures.css
50
51 unix:!symbian {
52     maemo5 {
53         target.path = /opt/usr/bin
54     } else {
55         target.path = /usr/local/bin
56     }
57     INSTALLS += target
58 }
59
60 unix:!symbian {
61     desktopfile.files = $${TARGET}.desktop
62     maemo5 {
63         desktopfile.path = /usr/share/applications/hildon
64     } else {
65         desktopfile.path = /usr/share/applications
66     }
67     INSTALLS += desktopfile cssfile
68 }
69
70 unix:!symbian {
71     css.files = resources/$${TARGET}.css resources/arrivals.css resources/departures.css
72     css.path = /usr/share/apps/$${TARGET}/css
73     icon48.files = icons/48x48/$${TARGET}.png
74     icon64.files = icons/64x64/$${TARGET}.png
75     icon48.path = /usr/share/icons/hicolor/48x48/apps
76     icon64.path = /usr/share/icons/hicolor/64x64/apps
77     INSTALLS += icon48
78     INSTALLS += icon64
79     INSTALLS += css
80 }