refs #891, moved common parts for FSX/P3D to fsxcommon

* driver / listener common parts
* config common parts
This commit is contained in:
Klaus Basan
2017-02-28 04:32:02 +01:00
committed by Mathew Sutcliffe
parent 347b54171b
commit 70045c046d
14 changed files with 3311 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
load(common_pre)
QT += core dbus concurrent xml network widgets
TARGET = simulatorfsxcommon
TEMPLATE = lib
CONFIG += staticlib
CONFIG += blackmisc blackcore blackgui
LIBS += -lsimulatorfscommon -lSimConnect -lFSUIPC_User
# required for FSUIPC
win32:!win32-g++*: QMAKE_LFLAGS += /NODEFAULTLIB:LIBC.lib
DEPENDPATH += . $$SourceRoot/src
INCLUDEPATH += . $$SourceRoot/src
SOURCES += *.cpp
HEADERS += *.h
FORMS += *.ui
DESTDIR = $$DestRoot/lib
load(common_post)