add sdl2_image test

This commit is contained in:
alexey.lysiuk 2022-09-03 10:32:11 +03:00
parent 3bb8127166
commit 8be2160008
1 changed files with 9 additions and 0 deletions

9
test/sdl2_image.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <SDL_image.h>
int main()
{
AEDI_EXPECT(IMG_Init(0) == 0);
IMG_Quit();
return 0;
}