summaryrefslogtreecommitdiff
path: root/examples/weatherinfo/weatherinfo.pro
blob: 1470b8a0b30b4fbfedfd2123e86a1ae06c824dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
TEMPLATE = app
TARGET = weatherinfo

QT += core network positioning qml quick

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]/qtpositioning/weatherinfo
sources.files = $$SOURCES $HEADERS $$RESOURCES $$FORMS *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtpositioning/weatherinfo
INSTALLS += target sources