From fe3e41e7eacf15f73d03b2755d2969224149ece2 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Thu, 15 Feb 2024 10:37:24 +0100 Subject: [PATCH] Set minimum SDL version It was determined that the touch/mouse hints only exist in this version. Since it's from 2019 this should be a reasonable minimum. --- source/Irrlicht/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Irrlicht/CMakeLists.txt b/source/Irrlicht/CMakeLists.txt index 1a0ce7ac..c4768b97 100644 --- a/source/Irrlicht/CMakeLists.txt +++ b/source/Irrlicht/CMakeLists.txt @@ -276,7 +276,7 @@ if(ENABLE_OPENGL OR ENABLE_OPENGL3) find_package(OpenGL REQUIRED) endif() if(USE_SDL2) - find_package(SDL2 CONFIG REQUIRED) + find_package(SDL2 2.0.10 CONFIG REQUIRED) message(STATUS "Found SDL2: ${SDL2_LIBRARIES}") endif()