diff options
Diffstat (limited to 'README.txt')
-rw-r--r-- | README.txt | 33 |
1 files changed, 27 insertions, 6 deletions
@@ -4,7 +4,7 @@ Build Instructions | |||
4 | 4 | ||
5 | * Check out the trunk code | 5 | * Check out the trunk code |
6 | 6 | ||
7 | * Build the /src/opensim.sln solution | 7 | * Build the /OpenSim.sln solution |
8 | 8 | ||
9 | * open cmd window, go to /bin and launch | 9 | * open cmd window, go to /bin and launch |
10 | OpenSim.exe -sandbox -loginserver | 10 | OpenSim.exe -sandbox -loginserver |
@@ -23,12 +23,33 @@ secondlife.exe -loginuri http://localhost:8080/ | |||
23 | 23 | ||
24 | * ensure you have nant (http://nant.sf.net) installed | 24 | * ensure you have nant (http://nant.sf.net) installed |
25 | 25 | ||
26 | * cd to the right directory and type "nant" | 26 | * cd to the trunk root directory and type "nant" |
27 | 27 | ||
28 | * cd to bin/ and run "mono OpenSim.exe -sandbox -loginserver" | 28 | * cd to bin/ and run "mono OpenSim.exe -sandbox -loginserver" |
29 | 29 | ||
30 | === Windows Nant Build === | 30 | === Prebuild === |
31 | |||
32 | We use Prebuild to generate vs2005 solutions and nant build scripts. | ||
33 | |||
34 | The Prebuild master project is /prebuild.xml | ||
35 | |||
36 | To build it with vs2005 : | ||
37 | |||
38 | * build the solution /Prebuild/Prebuild.sln | ||
39 | |||
40 | To build it with nant : | ||
41 | |||
42 | * cd to /Prebuild/ | ||
43 | * type 'nant' | ||
44 | |||
45 | After you've built it, move it from /Prebuild/src/bin to /bin/ directory, | ||
46 | |||
47 | after that you just modify the prebuild.xml and then execute | ||
48 | |||
49 | bin/Prebuild.exe /target {target} | ||
50 | |||
51 | where target is either | ||
52 | vs2005 - to generate new vs2005 solutions and projects | ||
53 | nant - to generate new nant build scripts | ||
54 | |||
31 | 55 | ||
32 | * same as Linux/mono build, but use | ||
33 | nant nogenvers | ||
34 | to cicumvent bash invokation | ||