aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/runprebuild.sh
diff options
context:
space:
mode:
authorUbitUmarov2015-09-01 11:43:07 +0100
committerUbitUmarov2015-09-01 11:43:07 +0100
commitfb78b182520fc9bb0f971afd0322029c70278ea6 (patch)
treeb4e30d383938fdeef8c92d1d1c2f44bb61d329bd /runprebuild.sh
parentlixo (diff)
parentMantis #7713: fixed bug introduced by 1st MOSES patch. (diff)
downloadopensim-SC-fb78b182520fc9bb0f971afd0322029c70278ea6.zip
opensim-SC-fb78b182520fc9bb0f971afd0322029c70278ea6.tar.gz
opensim-SC-fb78b182520fc9bb0f971afd0322029c70278ea6.tar.bz2
opensim-SC-fb78b182520fc9bb0f971afd0322029c70278ea6.tar.xz
Merge remote-tracking branch 'os/master'
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-xrunprebuild.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/runprebuild.sh b/runprebuild.sh
new file mode 100755
index 0000000..8c18db6
--- /dev/null
+++ b/runprebuild.sh
@@ -0,0 +1,32 @@
1#!/bin/sh
2
3case "$1" in
4
5 'clean')
6
7 mono bin/Prebuild.exe /clean
8
9 ;;
10
11
12 'autoclean')
13
14 echo y|mono bin/Prebuild.exe /clean
15
16 ;;
17
18
19 'vs2010')
20
21 mono bin/Prebuild.exe /target vs2010
22
23 ;;
24
25 *)
26
27 mono bin/Prebuild.exe /target nant
28 mono bin/Prebuild.exe /target vs2010
29
30 ;;
31
32esac