mirror of https://github.com/mgba-emu/mgba.git
SDL: Actually use FindSDL2 by default
This commit is contained in:
parent
8ac1ece17a
commit
006beb0704
|
@ -1,10 +1,10 @@
|
|||
set(SDL_VERSION "2" CACHE STRING "Version of SDL to use (1.2 or 2)")
|
||||
|
||||
if (SDL_VERSION EQUAL "2")
|
||||
find_package(SDL2)
|
||||
if (NOT SDL2_FOUND)
|
||||
include(FindPkgConfig)
|
||||
pkg_search_module(SDL2 sdl2)
|
||||
if (NOT SDL2_FOUND)
|
||||
find_package(SDL2)
|
||||
endif()
|
||||
|
||||
if (SDL2_FOUND)
|
||||
|
|
Loading…
Reference in New Issue