refs #392 Add INSTALL target for config plugins

This commit is contained in:
Michał Garapich
2015-11-18 20:35:47 +01:00
committed by Mathew Sutcliffe
parent 3dd86d4984
commit 7b398f3728
2 changed files with 17 additions and 0 deletions

View File

@@ -17,4 +17,12 @@ DISTFILES += simulator_fsx_config.json
DESTDIR = $$BuildRoot/bin/plugins/simulator
win32 {
dlltarget.path = $$PREFIX/bin/plugins/simulator
INSTALLS += dlltarget
} else {
target.path = $$PREFIX/bin/plugins/simulator
INSTALLS += target
}
load(common_post)

View File

@@ -4,6 +4,7 @@ QT += core widgets dbus
TARGET = simulator_xplane_config
TEMPLATE = lib
CONFIG += plugin shared
CONFIG += blackmisc blackcore blackgui
@@ -17,4 +18,12 @@ DISTFILES += simulator_xplane_config.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)