2012-09-06 11:58:14 +00:00
|
|
|
# Building on Windows
|
2010-01-15 17:24:24 +00:00
|
|
|
|
|
|
|
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
|
2010-01-15 17:24:24 +00:00
|
|
|
|
|
|
|
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
|
2012-01-08 23:21:09 +00:00
|
|
|
|
2010-01-15 17:24:24 +00:00
|
|
|
From the distribution type:
|
|
|
|
* ./runprebuild.sh
|
2014-05-30 15:56:05 +00:00
|
|
|
* nant (or !* xbuild)
|
2010-01-15 17:24:24 +00:00
|
|
|
* cd bin
|
|
|
|
* copy OpenSim.ini.example to OpenSim.ini and other appropriate files in bin/config-include
|
|
|
|
* run mono OpenSim.exe
|
2014-05-30 15:56:05 +00:00
|
|
|
!* xbuild option switches
|
|
|
|
!* clean: xbuild /target:clean
|
|
|
|
!* debug: (default) xbuild /property:Configuration=Debug
|
|
|
|
!* release: xbuild /property:Configuration=Release
|
2010-01-15 17:24:24 +00:00
|
|
|
|
2012-09-06 11:58:14 +00:00
|
|
|
# Using Monodevelop
|
2012-01-08 23:21:09 +00:00
|
|
|
|
|
|
|
From the distribution type:
|
|
|
|
* ./runprebuild.sh
|
|
|
|
* type monodevelop OpenSim.sln
|
|
|
|
|
2012-09-06 11:58:14 +00:00
|
|
|
# References
|
2010-01-15 17:24:24 +00:00
|
|
|
|
|
|
|
Helpful resources:
|
|
|
|
* http://opensimulator.org/wiki/Build_Instructions
|