Port SDL3 release scripts to SDL2

[skip ci]

(cherry picked from commit 8291b1be36)
This commit is contained in:
Anonymous Maarten
2024-09-16 22:56:12 +02:00
parent e9f5f3ac1f
commit 025fc35c87
14 changed files with 1214 additions and 21 deletions

9
cmake/test/sdltest.c Normal file
View File

@@ -0,0 +1,9 @@
#include "SDL.h"
#include "SDL_test.h"
int main(int argc, char *argv[]) {
SDLTest_CommonState state;
SDLTest_CommonDefaultArgs(&state, argc, argv);
return 0;
}