Changeset 119
- Timestamp:
- 08/17/05 03:19:38 (3 years ago)
- Files:
-
- trunk/DerelictIL (added)
- trunk/DerelictIL/Makefile.linux (added)
- trunk/DerelictIL/buildme.bat (added)
- trunk/DerelictIL/derelict (added)
- trunk/DerelictIL/derelict/devil (added)
- trunk/DerelictIL/derelict/devil/il.d (added)
- trunk/DerelictIL/derelict/devil/ilfuncs.d (added)
- trunk/DerelictIL/derelict/devil/iltypes.d (added)
- trunk/DerelictIL/derelict/devil/internal.d (added)
- trunk/DerelictIL/example.d (added)
- trunk/DerelictILU (added)
- trunk/DerelictILU/Makefile.linux (added)
- trunk/DerelictILU/buildme.bat (added)
- trunk/DerelictILU/derelict (added)
- trunk/DerelictILU/derelict/ilu (added)
- trunk/DerelictILU/derelict/ilu/ilu.d (added)
- trunk/DerelictILU/derelict/ilu/ilufuncs.d (added)
- trunk/DerelictILU/derelict/ilu/ilutypes.d (added)
- trunk/DerelictILU/derelict/ilu/internal.d (added)
- trunk/DerelictILU/example.d (added)
- trunk/DerelictILUT (added)
- trunk/DerelictILUT/Makefile.linux (added)
- trunk/DerelictILUT/buildme.bat (added)
- trunk/DerelictILUT/derelict (added)
- trunk/DerelictILUT/derelict/ilut (added)
- trunk/DerelictILUT/derelict/ilut/ilut.d (added)
- trunk/DerelictILUT/derelict/ilut/ilutfuncs.d (added)
- trunk/DerelictILUT/derelict/ilut/iluttypes.d (added)
- trunk/DerelictILUT/derelict/ilut/internal.d (added)
- trunk/DerelictILUT/example.d (added)
- trunk/buildme.bat (modified) (1 diff)
- trunk/docs/al.html (modified) (2 diffs)
- trunk/docs/credit.html (modified) (1 diff)
- trunk/docs/gl.html (modified) (1 diff)
- trunk/docs/glu.html (modified) (1 diff)
- trunk/docs/il.html (added)
- trunk/docs/ilu.html (added)
- trunk/docs/ilut.html (added)
- trunk/docs/index_a.html (modified) (2 diffs)
- trunk/docs/sdl.html (modified) (1 diff)
- trunk/docs/sdlimg.html (modified) (1 diff)
- trunk/docs/sdlmix.html (modified) (1 diff)
- trunk/docs/sdlnet.html (modified) (1 diff)
- trunk/docs/sdlttf.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/buildme.bat
r116 r119 6 6 if exist derelictGLFW\buildme.bat call derelictGLFW\buildme %1 7 7 if exist derelictGLU\buildme.bat call derelictGLU\buildme %1 8 if exist derelictIL\buildme.bat call derelictIL\buildme %1 9 if exist derelictILU\buildme.bat call derelictILU\buildme %1 10 if exist derelictILUT\buildme.bat call derelictILUT\buildme %1 8 11 if exist derelictSDL\buildme.bat call derelictSDL\buildme %1 9 12 if exist derelictSDLImage\buildme.bat call derelictSDLImage\buildme %1 trunk/docs/al.html
r112 r119 70 70 <h3>Building</h3> 71 71 Before building, ensure you have DerelictUtil on your system. It is required by 72 Derelict SDL for importing and linking.72 DerelictAL for importing and linking. 73 73 <p> 74 74 To build DerelictAL on Windows: … … 90 90 <li>ensure that both dmd and gcc are on your path</li> 91 91 <li>from a command prompt, cd to [derelict_dir]/DerelictAL</li> 92 <li>type 'make' or 'make all' to build derelictAL.a</li>92 <li>type 'make' or 'make all' to build libderelictAL.a</li> 93 93 <li>optionally type 'make clean' to delete all object files OR 94 94 optionally type 'make cleanall' to delete all object and lib files.</li> trunk/docs/credit.html
r112 r119 33 33 <li>James Dunne (Jaymz031602) - DerelictSDLMixer</li> 34 34 <li>Sebastian Beschke (randomZ) - DerelictSDLttf</li> 35 <li>Tomasz Stachowiak (h3r3tic) - Original version of DerelictIL</li> 35 36 <li>More pending!</li> 36 37 </ul> trunk/docs/gl.html
r112 r119 79 79 <li>ensure that both dmd and gcc are on your path</li> 80 80 <li>from a command prompt, cd to [derelict_dir]/DerelictGL</li> 81 <li>type 'make' or 'make all' to build derelictGL.a</li>81 <li>type 'make' or 'make all' to build libderelictGL.a</li> 82 82 <li>optionally type 'make clean' to delete all object files OR 83 83 optionally type 'make cleanall' to delete all object and lib files.</li> trunk/docs/glu.html
r112 r119 98 98 <li>ensure that both dmd and gcc are on your path</li> 99 99 <li>from a command prompt, cd to [derelict_dir]/DerelictGLU</li> 100 <li>type 'make' or 'make all' to build derelictGLU.a</li>100 <li>type 'make' or 'make all' to build libderelictGLU.a</li> 101 101 <li>optionally type 'make clean' to delete all object files OR 102 102 optionally type 'make cleanall' to delete all object and lib files.</li> trunk/docs/index_a.html
r112 r119 16 16 <li><a href="http://www.opengl.org/">OpenGL</a></li> 17 17 <li><a href="http://rush3d.com/reference/opengl-bluebook-1.0/ch06.html">OpenGL Utility Library (GLU)</a></li> 18 <li><a href="http://www.glfw.sourcforge.net">GLFW</a> 18 <li><a href="http://www.glfw.sourcforge.net/">GLFW</a> 19 <li><a href="http://openil.sourceforge.net/">DevIL, ILU, and ILUT</a><li> 19 20 <li><a href="http://www.libsdl.org/">SDL</a></li> 20 21 <li><a href="http://www.libsdl.org/projects/SDL_image/">SDL_image</a></li> … … 107 108 <li><a href="glfw.html">DerelictGLFW</a></li> 108 109 <li><a href="glu.html">DerelictGLU</a></li> 110 <li><a href="il.html">DerelictIL</a></li> 111 <li><a href="ilu.html">DerelictILU</a></li> 112 <li><a href="ilut.html">DerelictILUT</a></li> 109 113 <li><a href="sdl.html">DerelictSDL</a></li> 110 114 <li><a href="sdlimg.html">DerelictSDLImage</a></li> trunk/docs/sdl.html
r112 r119 89 89 <li>ensure that both dmd and gcc are on your path</li> 90 90 <li>from a command prompt, cd to [derelict_dir]/DerelictSDL</li> 91 <li>type 'make' or 'make all' to build derelictSDL.a</li>91 <li>type 'make' or 'make all' to build libderelictSDL.a</li> 92 92 <li>optionally type 'make clean' to delete all object files OR 93 93 optionally type 'make cleanall' to delete all object and lib files.</li> trunk/docs/sdlimg.html
r112 r119 77 77 <li>ensure that both dmd and gcc are on your path</li> 78 78 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLImage</li> 79 <li>type 'make' or 'make all' to build derelictSDLImage.a</li>79 <li>type 'make' or 'make all' to build libderelictSDLImage.a</li> 80 80 <li>optionally type 'make clean' to delete all object files OR 81 81 optionally type 'make cleanall' to delete all object and lib files.</li> trunk/docs/sdlmix.html
r112 r119 81 81 <li>ensure that both dmd and gcc are on your path</li> 82 82 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLMixer</li> 83 <li>type 'make' or 'make all' to build derelictSDLMixer.a</li>83 <li>type 'make' or 'make all' to build libderelictSDLMixer.a</li> 84 84 <li>optionally type 'make clean' to delete all object files OR 85 85 optionally type 'make cleanall' to delete all object and lib files.</li> trunk/docs/sdlnet.html
r112 r119 77 77 <li>ensure that both dmd and gcc are on your path</li> 78 78 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLNet</li> 79 <li>type 'make' or 'make all' to build derelictSDLNet.a</li>79 <li>type 'make' or 'make all' to build libderelictSDLNet.a</li> 80 80 <li>optionally type 'make clean' to delete all object files OR 81 81 optionally type 'make cleanall' to delete all object and lib files.</li> trunk/docs/sdlttf.html
r112 r119 13 13 <a href="http://www.libsdl.org/">SDL</a>. 14 14 <p> 15 <b>N ote:</b> This version of DerelictSDLttf requires SDL_ttf 2.0.7 or later.15 <b>NOTE:</b> This version of DerelictSDLttf requires SDL_ttf 2.0.7 or later. 16 16 </p><p> 17 17 <b>SPECIAL THANKS</b> to Sebastian Beschke for putting DerelictSDLttf together. … … 80 80 <li>ensure that both dmd and gcc are on your path</li> 81 81 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLttf</li> 82 <li>type 'make' or 'make all' to build derelictSDLttf.a</li>82 <li>type 'make' or 'make all' to build libderelictSDLttf.a</li> 83 83 <li>optionally type 'make clean' to delete all object files OR 84 84 optionally type 'make cleanall' to delete all object and lib files.</li>
