mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 21:15:33 +08:00
36 lines
736 B
Prolog
36 lines
736 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus widgets network
|
|
|
|
TARGET = simulatorxplane
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin shared
|
|
CONFIG += blackmisc blackcore blackgui blackconfig
|
|
|
|
DEPENDPATH += . $$SourceRoot/src
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
unix:!macx {
|
|
INCLUDEPATH *= /usr/include/dbus-1.0
|
|
INCLUDEPATH *= /usr/lib/x86_64-linux-gnu/dbus-1.0/include
|
|
}
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
DISTFILES += simulatorxplane.json
|
|
DESTDIR = $$DestRoot/bin/plugins/simulator
|
|
|
|
LIBS *= -lsimulatorplugincommon
|
|
addStaticLibraryDependency(simulatorplugincommon)
|
|
|
|
win32 {
|
|
dlltarget.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += dlltarget
|
|
} else {
|
|
target.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += target
|
|
}
|
|
|
|
load(common_post)
|