Implement GFS weatherdata plugin

refs #556
This commit is contained in:
Roland Winklmeier
2016-01-13 20:43:46 +01:00
parent 79210cb14e
commit 3fd9d1bffe
62 changed files with 11912 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
load(common_pre)
QT += core network dbus
TARGET = weatherdatagfs
TEMPLATE = lib
CONFIG += plugin shared
CONFIG += blackmisc blackcore
DEPENDPATH += . $$SourceRoot/src
INCLUDEPATH += . $$SourceRoot/src
include (g2clib/g2clib.pri)
SOURCES += *.cpp
HEADERS += *.h
DISTFILES += weatherdatagfs.json
DESTDIR = $$DestRoot/bin/plugins/weatherdata
win32 {
dlltarget.path = $$PREFIX/bin/plugins/weatherdata
INSTALLS += dlltarget
} else {
target.path = $$PREFIX/bin/plugins/weatherdata
INSTALLS += target
}
load(common_post)