refs #891, P3D driver / config

This commit is contained in:
Klaus Basan
2017-02-28 04:33:57 +01:00
committed by Mathew Sutcliffe
parent 5d8ed66931
commit d280141563
10 changed files with 319 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
load(common_pre)
QT += core widgets dbus network
TARGET = simulatorp3dconfig
TEMPLATE = lib
CONFIG += plugin shared
CONFIG += blackmisc blackcore blackgui
DEPENDPATH += . $$SourceRoot/src
INCLUDEPATH += . $$SourceRoot/src
SOURCES += *.cpp
HEADERS += *.h
DISTFILES += simulatorp3dconfig.json
LIBS += -lsimulatorfsxcommon
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)