diff options
author | Melanie | 2012-07-28 00:39:36 +0100 |
---|---|---|
committer | Melanie | 2012-07-28 00:39:36 +0100 |
commit | 771d79e83e9ef5686aee5fe1c572673cff291083 (patch) | |
tree | b37749fc1929ffd6dd1b9c2c4e29120accf26b99 /runprebuild.sh | |
parent | Merge branch 'master' into careminster (diff) | |
parent | LSL/OSSL lacks Math.Min & Math.Max implementations. (diff) | |
download | opensim-SC-771d79e83e9ef5686aee5fe1c572673cff291083.zip opensim-SC-771d79e83e9ef5686aee5fe1c572673cff291083.tar.gz opensim-SC-771d79e83e9ef5686aee5fe1c572673cff291083.tar.bz2 opensim-SC-771d79e83e9ef5686aee5fe1c572673cff291083.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Framework/Monitoring/BaseStatsCollector.cs
OpenSim/Region/Application/OpenSim.cs
OpenSim/Region/Application/OpenSimBase.cs
OpenSim/Region/Framework/Scenes/SceneManager.cs
bin/OpenMetaverse.Rendering.Meshmerizer.dll
bin/OpenMetaverse.StructuredData.dll
bin/OpenMetaverse.dll
bin/OpenMetaverseTypes.dll
prebuild.xml
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-x | runprebuild.sh | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/runprebuild.sh b/runprebuild.sh index b3b5c9d..d276edb 100755 --- a/runprebuild.sh +++ b/runprebuild.sh | |||
@@ -1,4 +1,42 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | mono bin/Prebuild.exe /target nant | 3 | case "$1" in |
4 | mono bin/Prebuild.exe /target vs2008 | 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 | 'vs2008') | ||
27 | |||
28 | mono bin/Prebuild.exe /target vs2008 | ||
29 | |||
30 | ;; | ||
31 | |||
32 | |||
33 | *) | ||
34 | |||
35 | mono bin/Prebuild.exe /target nant | ||
36 | mono bin/Prebuild.exe /target vs2008 | ||
37 | |||
38 | ;; | ||
39 | |||
40 | |||
41 | esac | ||
42 | |||