Files
opensim/runprebuild.sh
BlueWall 6ee17f5b36 Add autoclean for scripted use
./runprebuild.sh autoclean - cleans projects w/o prompting
2012-07-26 21:39:53 -04:00

43 lines
370 B
Bash
Executable File

#!/bin/sh
case "$1" in
'clean')
mono bin/Prebuild.exe /clean
;;
'autoclean')
echo y|mono bin/Prebuild.exe /clean
;;
'vs2010')
mono bin/Prebuild.exe /target vs2010
;;
'vs2008')
mono bin/Prebuild.exe /target vs2008
;;
*)
mono bin/Prebuild.exe /target nant
mono bin/Prebuild.exe /target vs2008
;;
esac