Files
pilotclient/src/plugins/simulator/p3dconfig/p3dconfig.pro
2020-09-15 00:08:56 +01:00

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)