diff options
author | UbitUmarov | 2015-09-01 11:43:07 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-01 11:43:07 +0100 |
commit | fb78b182520fc9bb0f971afd0322029c70278ea6 (patch) | |
tree | b4e30d383938fdeef8c92d1d1c2f44bb61d329bd /runprebuild.sh | |
parent | lixo (diff) | |
parent | Mantis #7713: fixed bug introduced by 1st MOSES patch. (diff) | |
download | opensim-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-x | runprebuild.sh | 32 |
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 | |||
3 | case "$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 | |||
32 | esac | ||