mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 23:25:53 +08:00
31 lines
604 B
Prolog
31 lines
604 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus widgets network
|
|
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin shared
|
|
CONFIG += blackconfig blackmisc blackcore blackgui
|
|
CONFIG += simulatorfsxcommon
|
|
|
|
DEPENDPATH += . $$SourceRoot/src
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
DESTDIR = $$DestRoot/bin/plugins/simulator
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
|
|
REQUIRES += swiftConfig(sims.p3d)
|
|
TARGET = simulatorp3dconfig
|
|
DISTFILES += simulatorp3dconfig.json
|
|
|
|
win32 {
|
|
dlltarget.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += dlltarget
|
|
} else {
|
|
target.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += target
|
|
}
|
|
|
|
load(common_post)
|