Files
pilotclient/samples/weatherdata/sampleweatherdata.pro
Roland Winklmeier c553d24d0e Move GFS weather data url into global setup
Summary:
The GFS weather data url so far was hard coded. With this commit, it is
moved into the global setup (bootstrap file).
Also the url type was changed from QUrl to CUrl, which simplified the
generation of the url including its query by using CUrl::appendQuery().
Finally it fixes sampleweatherdata, which did not have a CApplication yet.

Reviewers: #swift_pilot_client, msutcliffe

Reviewed By: #swift_pilot_client, msutcliffe

Subscribers: jenkins

Tags: #swift_pilot_client

Maniphest Tasks: T151

Differential Revision: https://dev.swift-project.org/D57
2017-11-20 15:57:08 +01:00

24 lines
359 B
Prolog

load(common_pre)
QT += core dbus network
TARGET = sampleweatherdata
TEMPLATE = app
CONFIG += console
CONFIG += blackmisc blackcore
CONFIG -= app_bundle
DEPENDPATH += . $$SourceRoot/src
INCLUDEPATH += . $$SourceRoot/src
HEADERS += *.h
SOURCES += *.cpp
DESTDIR = $$DestRoot/bin
target.path = $$PREFIX/bin
INSTALLS += target
load(common_post)