Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/enet-1.1/docs/install.dox @ 13

Last change on this file since 13 was 13, checked in by landauf, 16 years ago

added enet

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1/**
2@page Installation Installation
3
4ENet should be trivially simple to integrate with most applications.
5First, make sure you download the latest source distribution here @ref
6SourceDistro.
7
8@section Unix Unix-like Operating Systems
9
10[to be completed]
11
12@subsection SolarisBSD Solaris and BSD
13
14When building ENet under Solaris, you must specify the -lsocket and
15-lnsl parameters to your compiler to ensure that the sockets library
16is linked in.
17
18@section Windows Microsoft Windows
19
20Using MSVC 6 under Windows simply drag all the ENet source files into
21your main project or, better yet, create a new static library project
22and make your executable dependent (Project|Dependencies) on ENet.
23There is also an enet.dsp provided.
24
25You will have to link to the Winsock2 libraries, so make sure to add
26ws2_32.lib to your library list (Project Settings | Link |
27Object/library modules).
28
29@subsection DLL DLL
30
31If you wish to build ENet as a DLL you must first define ENET_DLL
32within the project (Project Settings | C/C++ | Preprocessor |
33Preprocessor definitions) or, more invasively, simply define ENET_DLL
34at the top of enet.h.
35
36*/
37
Note: See TracBrowser for help on using the repository browser.