From 3a00286890ba5bab2d1f035f3510b35b52061bc7 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Mon, 5 Oct 2020 01:48:46 +0100 Subject: [PATCH] Fix SDL2 version check SDL2 didn't start reporting its version until recently, so this check is pointless. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 70bcd7cb..98d70409 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -525,7 +525,7 @@ endif() if(BACKEND_PLATFORM MATCHES "SDL2" OR BACKEND_AUDIO MATCHES "SDL2") if(NOT FORCE_LOCAL_LIBS) - find_package(SDL2 2.0.6) + find_package(SDL2) if (PKG_CONFIG_FOUND) pkg_check_modules(sdl2 QUIET IMPORTED_TARGET sdl2)