From 35b9e38c17ce04d07ea6e926a405dc7c060b6ea3 Mon Sep 17 00:00:00 2001 From: onefang Date: Fri, 23 Aug 2019 09:48:29 +1000 Subject: Shuffle some coder level docs to it's own directory. --- coderDocs/BUILDING.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 coderDocs/BUILDING.md (limited to 'coderDocs/BUILDING.md') 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 @@ +# Building on Windows + +Steps: + * runprebuild.bat + * Load OpenSim.sln into Visual Studio .NET and build the solution. + * chdir bin + * copy OpenSim.ini.example to OpenSim.ini and other appropriate files in ../../config/config-include + * run OpenSim.exe + +# Building on Linux + +Prereqs: +* Mono >= 2.4.3 +* Nant >= 0.85 +* On some Linux distributions you may need to install additional packages. + See http://opensimulator.org/wiki/Dependencies for more information. +* May also use xbuild (included in mono distributions) +* May use Monodevelop, a cross-platform IDE + +From the distribution type: + * ./runprebuild.sh + * nant (or !* xbuild) + * cd bin + * copy OpenSim.ini.example to OpenSim.ini and other appropriate files in ../../config/config-include + * run mono OpenSim.exe + !* xbuild option switches + !* clean: xbuild /target:clean + !* debug: (default) xbuild /property:Configuration=Debug + !* release: xbuild /property:Configuration=Release + +# Using Monodevelop + +From the distribution type: + * ./runprebuild.sh + * type monodevelop OpenSim.sln + +# References + +Helpful resources: +* http://opensimulator.org/wiki/Build_Instructions + + +# For Devuan ASCII (and likely Debian Stretch) + + * xbuild /p:TargetFrameworkVersion="v4.5" + -- cgit v1.1