summaryrefslogtreecommitdiffstats
path: root/weather/weather.pro
blob: 4d97afb905cf01fddc63b711a17e1ecb7a9a92e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
TEMPLATE = app
TARGET = weather
QT += network \
    xml
target.path = $$PREFIX/bin
INSTALLS += target
RESOURCES += resources.qrc
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.5

include(../shared/shared.pri)

symbian {
    LIBS += -lesock \
        -lconnmon \
        -lcone \
        -lavkon
    addFiles.sources = weather.ini
    addFiles.path = c:\data
    DEPLOYMENT += addFiles
    ICON = images/icon-weather.svg
    OBJECTS_DIR = tmp
    MOC_DIR = tmp
    TARGET.CAPABILITY = NetworkServices
    TARGET.EPOCHEAPSIZE = 0x20000 \
        0x2000000
    TARGET.UID3 = 0xe1234567
}
unix {
    OBJECTS_DIR = tmp
    MOC_DIR = tmp
}
HEADERS += mainview.h \
    settings.h \
    forecastview.h \
    forecasthungitem.h \
    forecaststars.h \
    forecastsnow.h \
    forecastrain.h \
    forecast.h \
    carroussel.h \
    citycarroussel.h \
    gesturebox_p.h \
    gesturebox.h \
    titlebar.h \
    cityinfodisplay.h \
    pixmaploader.h \
    loading.h \
    forecastprovider.h \
    forecastdata.h \
    bootmanager.h \
    pixmapbutton.h \
    scrollbar.h \
    contentlist.h \
    citylist.h \
    citymanager.h \
    addcitytool.h \
    painttextitem.h \
    forecastsource.h \
    demoforecastsource.h \
    networkforecastsource.h \
    yahooweatherresponse.h \
    xoapweatherresponse.h \
    symbiannetwork.h \
    fakecontentscreen.h
SOURCES += mainview.cpp \
    main.cpp \
    settings.cpp \
    forecastview.cpp \
    forecasthungitem.cpp \
    forecaststars.cpp \
    forecastsnow.cpp \
    forecastrain.cpp \
    citycarroussel.cpp \
    gesturebox.cpp \
    titlebar.cpp \
    cityinfodisplay.cpp \
    pixmaploader.cpp \
    loading.cpp \
    forecastprovider.cpp \
    bootmanager.cpp \
    pixmapbutton.cpp \
    scrollbar.cpp \
    contentlist.cpp \
    citylist.cpp \
    citymanager.cpp \
    addcitytool.cpp \
    painttextitem.cpp \
    demoforecastsource.cpp \
    networkforecastsource.cpp \
    yahooweatherresponse.cpp \
    xoapweatherresponse.cpp \
    forecastdata.cpp \
    fakecontentscreen.cpp