sdl2-compat: cmake: Compatibility with CMake < 3.10 will be removed in a future CMake version

From ad5dab0f748267f044b1a35d4b1a4d0e57daa1c0 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Sun, 17 Nov 2024 21:59:40 +0100
Subject: [PATCH] cmake: Compatibility with CMake < 3.10 will be removed in a
 future CMake version

---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3cc5648..2631c99 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,7 +2,7 @@
 #        you can define SDL3_INCLUDE_DIRS on the cmdline.  For example:
 #        cmake -DSDL3_INCLUDE_DIRS=/opt/SDL3/include [other stuff ....]
 
-cmake_minimum_required(VERSION 3.0.0...3.5)
+cmake_minimum_required(VERSION 3.0.0...3.10)
 project(sdl2_compat VERSION 2.30.50 LANGUAGES C)
 
 if(POLICY CMP0074)