aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/BUILDING.md
diff options
context:
space:
mode:
authorUbitUmarov2015-09-01 11:43:07 +0100
committerUbitUmarov2015-09-01 11:43:07 +0100
commitfb78b182520fc9bb0f971afd0322029c70278ea6 (patch)
treeb4e30d383938fdeef8c92d1d1c2f44bb61d329bd /BUILDING.md
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 'BUILDING.md')
-rw-r--r--BUILDING.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/BUILDING.md b/BUILDING.md
new file mode 100644
index 0000000..d8deeeb
--- /dev/null
+++ b/BUILDING.md
@@ -0,0 +1,40 @@
1# Building on Windows
2
3Steps:
4 * runprebuild.bat
5 * Load OpenSim.sln into Visual Studio .NET and build the solution.
6 * chdir bin
7 * copy OpenSim.ini.example to OpenSim.ini and other appropriate files in bin/config-include
8 * run OpenSim.exe
9
10# Building on Linux
11
12Prereqs:
13* Mono >= 2.4.3
14* Nant >= 0.85
15* On some Linux distributions you may need to install additional packages.
16 See http://opensimulator.org/wiki/Dependencies for more information.
17* May also use xbuild (included in mono distributions)
18* May use Monodevelop, a cross-platform IDE
19
20From the distribution type:
21 * ./runprebuild.sh
22 * nant (or !* xbuild)
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 !* xbuild option switches
27 !* clean: xbuild /target:clean
28 !* debug: (default) xbuild /property:Configuration=Debug
29 !* release: xbuild /property:Configuration=Release
30
31# Using Monodevelop
32
33From the distribution type:
34 * ./runprebuild.sh
35 * type monodevelop OpenSim.sln
36
37# References
38
39Helpful resources:
40* http://opensimulator.org/wiki/Build_Instructions