From 57640b8161622a48e0b465d9e853ceb2d4824cda Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Fri, 24 Jun 2016 01:04:16 +0100 Subject: [PATCH] Improve the MSVC prebuild script to allow compiled binaries to be run directly with no further modification --- CI/before_script.msvc.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) mode change 100755 => 100644 CI/before_script.msvc.sh diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh old mode 100755 new mode 100644 index 3dee19be2..c0ac12d04 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -653,6 +653,19 @@ if [ -z $CI ]; then cp "$DLL" $CONFIGURATION/osgPlugins-3.3.8 done echo + + echo "Copying Runtime Resources/Config Files" + + echo " gamecontrollerdb.txt" + cp $CONFIGURATION/../gamecontrollerdb.txt $CONFIGURATION/gamecontrollerdb.txt + echo " openmw.cfg" + cp $CONFIGURATION/../openmw.cfg.install $CONFIGURATION/openmw.cfg + echo " openmw-cs.cfg" + cp $CONFIGURATION/../openmw-cs.cfg $CONFIGURATION/openmw-cs.cfg + echo " settings-default.cfg" + cp $CONFIGURATION/../settings-default.cfg $CONFIGURATION/settings-default.cfg + echo " resources/" + cp -r $CONFIGURATION/../resources $CONFIGURATION/resources fi exit $RET