corrade-vassal – Blame information for rev 1

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