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