Files
pilotclient/src/plugins/simulator/emulatedconfig/emulatedconfig.pro
2017-09-24 19:51:43 +01:00

29 lines
560 B
Prolog

load(common_pre)
QT += core widgets dbus network
TARGET = simulatoremulatedconfig
TEMPLATE = lib
CONFIG += plugin shared
CONFIG += blackmisc blackcore blackgui
DEPENDPATH += . $$SourceRoot/src
INCLUDEPATH += . $$SourceRoot/src
SOURCES += *.cpp
HEADERS += *.h
FORMS += *.ui
DISTFILES += simulatoremulatedconfig.json
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)