Initial FlightGear plugin commit

This commit is contained in:
ltoenning
2019-01-19 16:40:10 +01:00
committed by Mat Sutcliffe
parent a4dae5335d
commit 68cf4fa63d
22 changed files with 3625 additions and 1 deletions

View File

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