Skip to content

Commit

Permalink
Improve the MSVC prebuild script to allow compiled binaries to be run…
Browse files Browse the repository at this point in the history
… directly with no further modification
  • Loading branch information
AnyOldName3 committed Jun 24, 2016
1 parent 4dc0320 commit 57640b8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CI/before_script.msvc.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 57640b8

Please sign in to comment.