OpenSimMirror/runprebuild.sh

30 lines
300 B
Bash
Raw Normal View History

2007-07-12 21:06:52 +00:00
#!/bin/sh
case "$1" in
'clean')
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