Files
pilotclient/src/plugins/weatherdata/gfs/gfs.pro
Roland Winklmeier 3fd9d1bffe Implement GFS weatherdata plugin
refs #556
2016-01-28 01:36:00 +01:00

30 lines
544 B
Prolog

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)