You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
444 B

#include <SDL.h>
int main(void)
{
// Test 1 requires headers only.
SDL_version compiled;
SDL_VERSION(&compiled);
if (compiled.major != CMAKE_EXPECTED_SDL_VERSION_MAJOR ||
compiled.minor != CMAKE_EXPECTED_SDL_VERSION_MINOR ||
compiled.patch != CMAKE_EXPECTED_SDL_VERSION_PATCH)
return 1;
// Test 2 requires to link to the library.
if (SDL_WasInit(SDL_INIT_VIDEO | SDL_INIT_AUDIO) != 0)
return 2;
return 0;
}