singe/thirdparty/SDL3_image/cmake/test/main.c
2026-09-03 22:01:35 -05:00

16 lines
281 B
C

#include <SDL3/SDL.h>
#include <SDL3/SDL_main.h>
#include <SDL3_image/SDL_image.h>
int main(int argc, char *argv[])
{
if (!SDL_Init(0)) {
SDL_Log("SDL_Init(0) failed: %s\n", SDL_GetError());
return 1;
}
IMG_Version();
SDL_Quit();
return 0;
}