···3232# This could be handy for archiving the generated documentation or
3333# if some version control system is used.
34343535-PROJECT_NUMBER = 0.0
3535+PROJECT_NUMBER = 0.6.0
36363737# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838# for a project that appears at the top of each page and should give viewer
+58
SDL_gpu/mainpage.dox
···11+/*!
22+\mainpage
33+44+SDL_gpu is a C code library for making hardware-accelerated 2D graphics easy.
55+66+SDL_gpu is licensed under the terms of the MIT License.
77+See LICENSE.txt for details of the usage license granted to you for this code.
88+99+1010+\section latest_source LATEST SOURCE
1111+1212+SDL_gpu is hosted on Google Code (http://code.google.com/p/sdl-gpu). You can check out the latest version of the source code with Subversion:
1313+svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu
1414+1515+To check out everything, including the pre-generated documentation:
1616+svn checkout http://sdl-gpu.googlecode.com/svn/ sdl-gpu
1717+1818+For just the current library code, use:
1919+svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu
2020+2121+2222+\section dependencies DEPENDENCIES
2323+2424+SDL 1.2 or SDL 2.0 (www.libsdl.org)
2525+A rendering backend
2626+ Currently implemented: OpenGL 1.1, OpenGL 2.0, OpenGL 3.0, OpenGL ES 1.1, OpenGL ES 2.0
2727+2828+2929+\section building BUILDING
3030+3131+SDL_gpu uses CMake (www.cmake.org) to coordinate the library build process. CMake is available as a GUI program or on the command line.
3232+3333+For Linux/UNIX systems, run CMake in the base directory:
3434+cmake -G "Unix Makefiles"
3535+make
3636+sudo make install
3737+3838+For Linux/UNIX systems, changing the default installation directory can be done like so:
3939+cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr
4040+4141+For Windows systems, you can use cmake-gui and select appropriate options in there (warning: cmake-gui is messy!).
4242+4343+4444+\section including_linking INCLUDING / LINKING
4545+4646+Add the include for SDL_gpu.h to your sources. Link to SDL_gpu (libSDL_gpu.a) or SDL2_gpu (if you use SDL2).
4747+4848+4949+\section documentation DOCUMENTATION
5050+5151+Documentation is automatically generated with Doxygen (http://sourceforge.net/projects/doxygen).
5252+Pre-generated documentation can be found in the repository's base documentation directory.
5353+5454+*/
5555+5656+5757+5858+