Speculative fixes for SDL fallback and failing configuring

This commit is contained in:
Jeffrey Pfau 2014-10-08 04:48:23 -07:00
parent c7bb9618a0
commit 59f1018dd2
1 changed files with 2 additions and 1 deletions

View File

@ -14,10 +14,11 @@ endif()
if(SDL_VERSION EQUAL "1.2" OR NOT SDL2_FOUND)
find_package(SDL 1.2)
set(SDL_VERSION "1.2" PARENT_SCOPE)
endif()
if (NOT SDL2_FOUND AND NOT SDL_FOUND)
set(BUILD_SDL OFF)
set(BUILD_SDL OFF PARENT_SCOPE)
return()
endif()