1TEMPLATE = app 2TARGET = weatherinfo 3 4QT += core network positioning qml quick 5 6SOURCES += main.cpp \ 7 appmodel.cpp 8 9OTHER_FILES += weatherinfo.qml \ 10 components/WeatherIcon.qml \ 11 components/ForecastIcon.qml \ 12 components/BigForecastIcon.qml \ 13 icons/* 14 15 16RESOURCES += weatherinfo.qrc 17 18HEADERS += appmodel.h 19 20target.path = $$[QT_INSTALL_EXAMPLES]/positioning/weatherinfo 21INSTALLS += target 22