summaryrefslogtreecommitdiff
path: root/examples/weatherinfo/weatherinfo.pro
blob: e87bea21278f27a4aef043aad695369bb11b5ed2 (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
TEMPLATE = app
TARGET = weatherinfo

QT += core \
    network \
    location \
    declarative \
    quick

symbian:TARGET.CAPABILITY += Location \
    NetworkServices \
    ReadUserData

SOURCES += main.cpp \
    appmodel.cpp

OTHER_FILES += weatherinfo.qml \
    components/WeatherIcon.qml \
    components/ForecastIcon.qml \
    components/BigForecastIcon.qml

RESOURCES += weatherinfo.qrc

HEADERS += appmodel.h

#install
target.path = $$[QT_INSTALL_EXAMPLES]/qtlocation/weatherinfo
sources.files = $$SOURCES $HEADERS $$RESOURCES $$FORMS *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtlocation/weatherinfo
INSTALLS += target sources