diff options
author | onefang | 2019-08-23 09:48:29 +1000 |
---|---|---|
committer | onefang | 2019-08-23 09:48:29 +1000 |
commit | 35b9e38c17ce04d07ea6e926a405dc7c060b6ea3 (patch) | |
tree | 68d4fe3dee53d15b5b11f81e430d473340c10170 /coderDocs/BUILDING.md | |
parent | config/ROBUST/RobustExtra.ini (diff) | |
download | opensim-SC-35b9e38c17ce04d07ea6e926a405dc7c060b6ea3.zip opensim-SC-35b9e38c17ce04d07ea6e926a405dc7c060b6ea3.tar.gz opensim-SC-35b9e38c17ce04d07ea6e926a405dc7c060b6ea3.tar.bz2 opensim-SC-35b9e38c17ce04d07ea6e926a405dc7c060b6ea3.tar.xz |
Shuffle some coder level docs to it's own directory.
Diffstat (limited to 'coderDocs/BUILDING.md')
-rw-r--r-- | coderDocs/BUILDING.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/coderDocs/BUILDING.md b/coderDocs/BUILDING.md new file mode 100644 index 0000000..233fa08 --- /dev/null +++ b/coderDocs/BUILDING.md | |||
@@ -0,0 +1,46 @@ | |||
1 | # Building on Windows | ||
2 | |||
3 | Steps: | ||
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 ../../config/config-include | ||
8 | * run OpenSim.exe | ||
9 | |||
10 | # Building on Linux | ||
11 | |||
12 | Prereqs: | ||
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 | |||
20 | From 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 ../../config/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 | |||
33 | From the distribution type: | ||
34 | * ./runprebuild.sh | ||
35 | * type monodevelop OpenSim.sln | ||
36 | |||
37 | # References | ||
38 | |||
39 | Helpful resources: | ||
40 | * http://opensimulator.org/wiki/Build_Instructions | ||
41 | |||
42 | |||
43 | # For Devuan ASCII (and likely Debian Stretch) | ||
44 | |||
45 | * xbuild /p:TargetFrameworkVersion="v4.5" | ||
46 | |||