mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 08:36:52 +08:00
28 lines
563 B
Prolog
28 lines
563 B
Prolog
load(common_pre)
|
|
|
|
QT += core widgets dbus network
|
|
|
|
TARGET = simulatorfsxconfig
|
|
TEMPLATE = lib
|
|
CONFIG += plugin shared
|
|
CONFIG += blackmisc blackcore blackgui
|
|
|
|
DEPENDPATH += . $$SourceRoot/src
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
DISTFILES += simulatorfsxconfig.json
|
|
LIBS += -lsimulatorfsxcommon
|
|
DESTDIR = $$DestRoot/bin/plugins/simulator
|
|
|
|
win32 {
|
|
dlltarget.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += dlltarget
|
|
} else {
|
|
target.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += target
|
|
}
|
|
|
|
load(common_post)
|