mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-09 05:28:09 +08:00
refs #204 stub project for the X-Plane sim driver
This commit is contained in:
committed by
Klaus Basan
parent
8043caab6d
commit
59112e237c
@@ -25,6 +25,10 @@ contains(BLACK_CONFIG, BlackSim) {
|
|||||||
contains(BLACK_CONFIG, FSX) {
|
contains(BLACK_CONFIG, FSX) {
|
||||||
SUBDIRS += src/blacksim/fsx/plugin_fsx.pro
|
SUBDIRS += src/blacksim/fsx/plugin_fsx.pro
|
||||||
}
|
}
|
||||||
|
|
||||||
|
contains(BLACK_CONFIG, XPlane) {
|
||||||
|
SUBDIRS += src/blacksim/xplane/plugin/plugin_xplane.pro
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
contains(BLACK_CONFIG, Samples) {
|
contains(BLACK_CONFIG, Samples) {
|
||||||
|
|||||||
@@ -27,4 +27,5 @@ BLACK_CONFIG += BlackSim
|
|||||||
BLACK_CONFIG += Samples
|
BLACK_CONFIG += Samples
|
||||||
BLACK_CONFIG += Unittests
|
BLACK_CONFIG += Unittests
|
||||||
#BLACK_CONFIG += FSX
|
#BLACK_CONFIG += FSX
|
||||||
|
#BLACK_CONFIG += XPlane
|
||||||
#BLACK_CONFIG += Doxygen
|
#BLACK_CONFIG += Doxygen
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
include (externals.pri)
|
include (externals.pri)
|
||||||
|
|
||||||
LIBS *= -L../../lib -L../../../lib
|
LIBS *= -L../../lib -L../../../lib -L../../../../lib
|
||||||
|
|
||||||
blackgui {
|
blackgui {
|
||||||
LIBS += -lblackgui
|
LIBS += -lblackgui
|
||||||
|
|||||||
@@ -31,6 +31,11 @@ SOURCES += $$PWD/fscommon/*.cpp
|
|||||||
HEADERS += $$PWD/fsx/*.h
|
HEADERS += $$PWD/fsx/*.h
|
||||||
SOURCES += $$PWD/fsx/*.cpp
|
SOURCES += $$PWD/fsx/*.cpp
|
||||||
|
|
||||||
|
contains(BLACK_CONFIG, XPlane) {
|
||||||
|
HEADERS += $$PWD/xplane/plugin/*.h
|
||||||
|
SOURCES += $$PWD/xplane/plugin/*.cpp
|
||||||
|
}
|
||||||
|
|
||||||
DESTDIR = ../../lib
|
DESTDIR = ../../lib
|
||||||
|
|
||||||
include (../../libraries.pri)
|
include (../../libraries.pri)
|
||||||
|
|||||||
22
src/blacksim/xplane/plugin/plugin_xplane.pro
Normal file
22
src/blacksim/xplane/plugin/plugin_xplane.pro
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
include (../../../../config.pri)
|
||||||
|
include (../../../../build.pri)
|
||||||
|
|
||||||
|
QT += core dbus network
|
||||||
|
|
||||||
|
TARGET = simulator_xplane
|
||||||
|
TEMPLATE = lib
|
||||||
|
|
||||||
|
CONFIG += plugin shared
|
||||||
|
CONFIG += blackmisc
|
||||||
|
|
||||||
|
DEPENDPATH += . ../../../../src
|
||||||
|
INCLUDEPATH += . ../../../../src
|
||||||
|
|
||||||
|
SOURCES += *.cpp
|
||||||
|
HEADERS += *.h
|
||||||
|
|
||||||
|
#win32:!win32-g++*: PRE_TARGETDEPS += ../../../../lib/blackmisc.lib
|
||||||
|
|
||||||
|
DESTDIR = ../../../../bin/plugins
|
||||||
|
|
||||||
|
include (../../../../libraries.pri)
|
||||||
0
src/blacksim/xplane/plugin/stub.cpp
Normal file
0
src/blacksim/xplane/plugin/stub.cpp
Normal file
0
src/blacksim/xplane/plugin/stub.h
Normal file
0
src/blacksim/xplane/plugin/stub.h
Normal file
Reference in New Issue
Block a user