SDL: Use FindSDL2 by default

This commit is contained in:
Vicki Pfau 2022-02-07 04:28:43 -08:00
parent 6c84f43c22
commit a9e6c0a659
1 changed files with 6 additions and 2 deletions

View File

@ -6,7 +6,7 @@ if (SDL_VERSION EQUAL "2")
if (NOT SDL2_FOUND)
find_package(SDL2)
endif()
if (SDL2_FOUND)
set(SDL_INCLUDE_DIR ${SDL2_INCLUDE_DIRS})
set(SDL_LIBRARY ${SDL2_LIBRARIES})
@ -15,7 +15,11 @@ if (SDL_VERSION EQUAL "2")
set(SDL_FOUND ON PARENT_SCOPE)
if (NOT SDL2MAIN_LIBRARY)
set(SDL2MAIN_LIBRARY "")
if(TARGET SDL2::SDL2main)
set(SDL2MAIN_LIBRARY SDL2::SDL2main)
else()
set(SDL2MAIN_LIBRARY "")
endif()
endif()
set(SDLMAIN_LIBRARY ${SDL2MAIN_LIBRARY})