-
Notifications
You must be signed in to change notification settings - Fork 4
/
README.txt
91 lines (62 loc) · 3.22 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
libOpenMetaverse Library Quick Start
Finding Help
------------
If you need any help we have a couple of resources, the primary one being
the #libomv-dev IRC channel on EFNet. There is also the libomv-dev mailing list
at http://groups.google.com/group/libomv-dev and lastly you can use the e-mail
[email protected] for any general inquiries (although we prefer
developer-related questions to go to IRC or the mailing list). You can find us
in-world via the open invitation libsecondlife group or at our HQ and testing
area in Hooper (SLURL: http://slurl.com/secondlife/Hooper/192/43/25/).
Source Code:
To checkout a copy of libopenmv trunk
svn co http://openmetaverse.org/svn/omf/libopenmetaverse/trunk/ libopenmetaverse
For more details see:
http://lib.openmetaverse.org/wiki/SVN
http://lib.openmetaverse.org/wiki/Getting_Started
Getting started on Windows
====================================================================================
Prerequisites (all Freely Available)
--------------------------------------
Microsoft .NET Framework 3.5 - Get directly from Windows Update.
Visual C# Express - http://msdn.microsoft.com/vstudio/express/visualcsharp/
Optional-
nAnt (0.86) - http://nant.sourceforge.net/
nUnit Framework (2.2.8 or greater) - http://www.nunit.org/
Compiling
---------
For Visual Studio 2008/Visual C# Express 2008
1. Open Explorer and browse to the directory you extracted the source distribution to
2. Double click the runprebuild2008.bat file, this will create the necessary solution and project files
3. open the solution OpenMetaverse.sln from within Visual Studio
4. From the Build Menu choose Build Solution (or press the F6 Key)
The library, example applications and tools will be in the bin directory
For Visual Studio 2010:
1. Open Explorer and browse to the directory you extracted the source distribution to
2. Double click the runprebuild2010.bat file, this will create the necessary solution and project files
3. open the solution OpenMetaverse.sln from within Visual Studio
4. From the Build Menu choose Build Solution (or press the F6 Key)
The library, example applications and tools will be in the bin directory
For more details http://lib.openmetaverse.org/wiki/Getting_Started
Getting started on Linux
====================================================================================
Prerequisites Needed
--------------------
mono 2.4 - http://www.mono-project.com/
Optional-
nUnit Framework (2.2.8 or greater) - http://www.nunit.org/
nAnt (0.86) - http://nant.sourceforge.net/
Compiling
---------
Using nant:
1. Change to the directory you extracted the source distribution to
2. run the prebuild file: % sh runprebuild.sh nant - This will generate the required nant build files and run
nant with the correct buildfile parameter to build the library, examples and tools
Using mono xbuild:
1. Change to the directory you extracted the source distribution to
2. run the prebuild file: % sh runprebuild.sh - This will generate the solution files for xbuild
3. Compile the solution with the command: % xbuild OpenMetaverse.sln
The library, example applications and tools will be in the bin directory
For more details http://lib.openmetaverse.org/wiki/Getting_Started
Happy fiddling,
-- OpenMetaverse Ninjas