Initial structure

This commit is contained in:
2015-09-04 10:02:06 +02:00
commit 98e363eda6
457 changed files with 127943 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
#set -x
DeployLocation="bin/"
echo "Deploying resources to ${DeployLocation}"
# Asset folders
ln -srf assets/Models ${DeployLocation}
ln -srf assets/Textures ${DeployLocation}
ln -srf assets/Sounds ${DeployLocation}
# Shaders
ln -srf src/dd/Core/Shaders ${DeployLocation}
# Platform specific binaries
if [[ $# -eq 1 ]]; then
echo "Deploying {$1} binaries to ${DeployLocation}"
ln -srf deps/bin/$1/x64/*.dll ${DeployLocation}
fi