Merge branch 'master' of /home/opensim/var/repo/opensim

integration
BlueWall 2012-07-26 21:41:48 -04:00
commit cf6bbe9d0f
1 changed files with 40 additions and 2 deletions

View File

@ -1,4 +1,42 @@
#!/bin/sh
mono bin/Prebuild.exe /target nant
mono bin/Prebuild.exe /target vs2008
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