diff options
author | Justin Clark-Casey (justincc) | 2010-01-15 17:24:24 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-01-15 17:24:24 +0000 |
commit | 7e07bca21232c7f027b8e1acf876badbfbd2a66a (patch) | |
tree | 36ddec7585e19aa074dc3669f1ea46afbd89b59b /BUILDING.txt | |
parent | add an agent position field to AgentUpdateArgs for use by some non-LL clients (diff) | |
download | opensim-SC_OLD-7e07bca21232c7f027b8e1acf876badbfbd2a66a.zip opensim-SC_OLD-7e07bca21232c7f027b8e1acf876badbfbd2a66a.tar.gz opensim-SC_OLD-7e07bca21232c7f027b8e1acf876badbfbd2a66a.tar.bz2 opensim-SC_OLD-7e07bca21232c7f027b8e1acf876badbfbd2a66a.tar.xz |
* Separate out building instructions. Further revise README
Diffstat (limited to 'BUILDING.txt')
-rw-r--r-- | BUILDING.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/BUILDING.txt b/BUILDING.txt new file mode 100644 index 0000000..03fb482 --- /dev/null +++ b/BUILDING.txt | |||
@@ -0,0 +1,30 @@ | |||
1 | == Building OpenSim == | ||
2 | |||
3 | === Building on Windows === | ||
4 | |||
5 | Steps: | ||
6 | * runprebuild.bat | ||
7 | * Load OpenSim.sln into Visual Studio .NET and build the solution. | ||
8 | * chdir bin | ||
9 | * copy OpenSim.ini.example to OpenSim.ini and other appropriate files in bin/config-include | ||
10 | * run OpenSim.exe | ||
11 | |||
12 | === Building on Linux === | ||
13 | |||
14 | Prereqs: | ||
15 | * Mono >= 2.4.2 | ||
16 | * Nant >= 0.85 | ||
17 | * On some Linux distributions you may need to install additional packages. | ||
18 | See http://opensimulator.org/wiki/Dependencies for more information. | ||
19 | |||
20 | From the distribution type: | ||
21 | * ./runprebuild.sh | ||
22 | * nant | ||
23 | * cd bin | ||
24 | * copy OpenSim.ini.example to OpenSim.ini and other appropriate files in bin/config-include | ||
25 | * run mono OpenSim.exe | ||
26 | |||
27 | === References === | ||
28 | |||
29 | Helpful resources: | ||
30 | * http://opensimulator.org/wiki/Build_Instructions | ||