2024-05-01 01:39:54 +00:00
projectfullname = Simple Directmedia Layer
2022-11-22 17:48:33 +00:00
projectshortname = SDL
2023-01-25 00:42:03 +00:00
incsubdir = include/SDL3
2022-06-16 03:25:36 +00:00
wikisubdir =
2023-02-28 16:37:46 +00:00
readmesubdir = docs
2024-05-15 16:32:41 +00:00
apiprefixregex = (SDL_|SDLK_)
2023-03-18 00:29:05 +00:00
mainincludefname = SDL3/SDL.h
2024-05-15 21:22:41 +00:00
versionfname = include/SDL3/SDL_version.h
2022-06-16 03:25:36 +00:00
versionmajorregex = \A\#define\s+SDL_MAJOR_VERSION\s+(\d+)\Z
versionminorregex = \A\#define\s+SDL_MINOR_VERSION\s+(\d+)\Z
2024-05-14 14:47:13 +00:00
versionmicroregex = \A\#define\s+SDL_MICRO_VERSION\s+(\d+)\Z
2022-06-16 03:25:36 +00: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 19:37:58 +00: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-23 03:54:40 +00: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 14:19:34 +00:00
2024-05-16 14:44:37 +00:00
# All SDL_test_* headers become undefined categories, everything else just converts like SDL_audio.h -> Audio
2024-05-14 14:19:34 +00:00
# A handful of others we fix up in the header itself with /* WIKI CATEGORY: x */ comments.
2024-05-16 14:44:37 +00:00
headercategoryeval = s/\ASDL_test_?.*?\.h\Z//; s/\ASDL_?(.*?)\.h\Z/$1/; ucfirst();