OpenSimMirror/BUILDING.md

41 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2012-09-06 11:58:14 +00:00
# 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 bin/config-include
* run OpenSim.exe
2012-09-06 11:58:14 +00:00
# Building on Linux
Prereqs:
2012-09-06 11:58:33 +00:00
* 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 bin/config-include
* run mono OpenSim.exe
!* xbuild option switches
!* clean: xbuild /target:clean
!* debug: (default) xbuild /property:Configuration=Debug
!* release: xbuild /property:Configuration=Release
2012-09-06 11:58:14 +00:00
# Using Monodevelop
From the distribution type:
* ./runprebuild.sh
* type monodevelop OpenSim.sln
2012-09-06 11:58:14 +00:00
# References
Helpful resources:
* http://opensimulator.org/wiki/Build_Instructions