2024-04-30 21:39:54 -04:00
projectfullname = Simple Directmedia Layer
2022-11-22 12:48:33 -05:00
projectshortname = SDL
2023-01-24 19:42:03 -05:00
incsubdir = include/SDL3
2022-06-15 23:25:36 -04:00
wikisubdir =
2023-02-28 11:37:46 -05:00
readmesubdir = docs
2024-05-15 12:32:41 -04:00
apiprefixregex = (SDL_|SDLK_)
2023-03-18 01:29:05 +01:00
mainincludefname = SDL3/SDL.h
2024-05-15 14:22:41 -07:00
versionfname = include/SDL3/SDL_version.h
2022-06-15 23:25:36 -04:00
versionmajorregex = \A\#define\s+SDL_MAJOR_VERSION\s+(\d+)\Z
versionminorregex = \A\#define\s+SDL_MINOR_VERSION\s+(\d+)\Z
2024-05-14 07:47:13 -07:00
versionmicroregex = \A\#define\s+SDL_MICRO_VERSION\s+(\d+)\Z
2022-06-15 23:25:36 -04:00
selectheaderregex = \ASDL.*?\.h\Z
projecturl = https://libsdl.org/
wikiurl = https://wiki.libsdl.org
bugreporturl = https://github.com/libsdl-org/sdlwiki/issues/new
warn_about_missing = 0
2024-10-04 15:37:58 -04:00
wikipreamble = (This is the documentation for SDL3, which is the current stable version. [SDL2](https://wiki.libsdl.org/SDL2/) was the previous version!)
2024-04-22 23:54:40 -04:00
wikiheaderfiletext = Defined in [<SDL3/%fname%>](https://github.com/libsdl-org/SDL/blob/main/include/SDL3/%fname%)
manpageheaderfiletext = Defined in SDL3/%fname%
2024-05-14 10:19:34 -04:00
2024-05-16 10:44:37 -04:00
# All SDL_test_* headers become undefined categories, everything else just converts like SDL_audio.h -> Audio
2024-05-14 10:19:34 -04:00
# A handful of others we fix up in the header itself with /* WIKI CATEGORY: x */ comments.
2024-05-16 10:44:37 -04:00
headercategoryeval = s/\ASDL_test_?.*?\.h\Z//; s/\ASDL_?(.*?)\.h\Z/$1/; ucfirst();