refs #204 stub project for the X-Plane sim driver

This commit is contained in:
Mathew Sutcliffe
2014-04-03 15:26:10 +01:00
committed by Klaus Basan
parent 8043caab6d
commit 59112e237c
7 changed files with 33 additions and 1 deletions

View File

@@ -31,6 +31,11 @@ SOURCES += $$PWD/fscommon/*.cpp
HEADERS += $$PWD/fsx/*.h
SOURCES += $$PWD/fsx/*.cpp
contains(BLACK_CONFIG, XPlane) {
HEADERS += $$PWD/xplane/plugin/*.h
SOURCES += $$PWD/xplane/plugin/*.cpp
}
DESTDIR = ../../lib
include (../../libraries.pri)

View 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)

View File

View File