mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
30 lines
617 B
Prolog
30 lines
617 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus network widgets
|
|
|
|
TARGET = simulatorfsxconfig
|
|
TEMPLATE = lib
|
|
CONFIG += plugin shared
|
|
CONFIG += blackconfig blackmisc blackcore blackgui
|
|
|
|
DEPENDPATH += . $$SourceRoot/src
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
DISTFILES += simulatorfsxconfig.json
|
|
LIBS += -lsimulatorfsxcommon
|
|
addStaticLibraryDependency(simulatorfsxcommon)
|
|
|
|
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)
|