Updated deploy scripts to include DefaultConfig.ini

This commit is contained in:
2015-10-15 17:56:30 +02:00
parent 862396e0fa
commit a9eb3197de
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
@ECHO on
@ECHO off
SET DeployLocation=bin\
@@ -7,6 +7,8 @@ ECHO Deploying resources to %DeployLocation%
MKLINK "%DeployLocation%\Models\" "assets\Models" /J
MKLINK "%DeployLocation%\Textures\" "assets\Textures\" /J
MKLINK "%DeployLocation%\Sounds\" "assets\Sounds\" /J
:: Configuration files
MKLINK "%DeployLocation%\DefaultConfig.ini" "assets\DefaultConfig.ini" /H
:: Shaders
MKLINK "%DeployLocation%\Shaders\" "src\game\Core\Shaders\" /J
:: Platform specific binaries
+2
View File
@@ -8,6 +8,8 @@ echo "Deploying resources to ${DeployLocation}"
ln -srf assets/Models ${DeployLocation}
ln -srf assets/Textures ${DeployLocation}
ln -srf assets/Sounds ${DeployLocation}
# Configuration files
ln -s assets/DefaultConfig.ini $[DeployLocation}
# Shaders
ln -srf src/game/Core/Shaders ${DeployLocation}
# Platform specific binaries