Mercurial > sdl-ios-xcode
annotate README.Win32 @ 264:c9cd3b564e4b
*** empty log message ***
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 14 Jan 2002 19:20:39 +0000 |
parents | b23d3c5a32f3 |
children | 051b991765ba |
rev | line source |
---|---|
0 | 1 |
2 ============================================================================== | |
3 Using the Simple DirectMedia Layer with Windows 95,NT | |
4 ============================================================================== | |
5 | |
6 These instructions are for people using the GNU free compilers. | |
7 If you want to use Microsoft VC++ with SDL, read "VisualC.html" | |
8 | |
9 ============================================================================== | |
10 I. Building the Simple DirectMedia Layer libraries: | |
11 (This step isn't necessary if you have the SDL binary distribution) | |
12 | |
13 First, get gcc compiler for Win32, which can be found at: | |
14 http://www.libsdl.org/Xmingw32/index.html | |
15 | |
16 Grab the cross configure and make scripts, and then run: | |
17 sh cross-configure.sh | |
18 sh cross-make.sh install | |
19 If you have already built SDL natively, you must do "make distclean" | |
20 before you build for Win32. | |
21 | |
22 If everything compiles successfully, you now have SDL.dll and gcc archive | |
23 libraries libSDLmain.a and libSDL.a installed in /usr/local/cross-tools/ | |
24 | |
25 ============================================================================== | |
26 II. Building the Simple DirectMedia Layer test programs: | |
27 | |
28 This is easy once you have built the libraries: | |
29 | |
30 cd test; sh ../cross-configure.sh; sh ../cross-make.sh | |
31 | |
32 ============================================================================== | |
33 III. Building the Simple DirectMedia Layer demo programs: | |
34 | |
35 Go to the directory containing the demo you want to build and type: | |
36 | |
37 sh cross-configure.sh; sh cross-make.sh | |
38 | |
39 Be sure to rename the demo to use the .exe extension, or Windows will | |
40 not be able to execute it. | |
41 | |
42 ============================================================================== | |
43 IV. Enjoy! :) | |
44 | |
45 If you have a project you'd like me to know about, or want to ask questions, | |
46 go ahead and join the SDL developer's mailing list by sending e-mail to: | |
47 | |
253
b23d3c5a32f3
Updated mailing list information
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
48 sdl-request@libsdl.org |
0 | 49 |
253
b23d3c5a32f3
Updated mailing list information
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
50 and put "subscribe" into the subject of the message. Or alternatively you |
b23d3c5a32f3
Updated mailing list information
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
51 can use the web interface: |
b23d3c5a32f3
Updated mailing list information
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
52 |
b23d3c5a32f3
Updated mailing list information
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
53 http://www.libsdl.org/mailman/listinfo/sdl |
0 | 54 |
55 ============================================================================== | |
56 |