From e5e099b933ce63d0ee125f39108cce8d68c19882 Mon Sep 17 00:00:00 2001 From: Jan Niklas Hasse Date: Tue, 3 Oct 2023 09:15:06 +0200 Subject: [PATCH] CMake: Update downloaded SDL2 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aaa9af918..3c1a3f0b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -234,8 +234,8 @@ else() if(JNGL_SDL2) set(SDL_SENSOR OFF CACHE BOOL "" FORCE) # doesn't work with UWP FetchContent_Declare(sdl2 - URL https://www.libsdl.org/release/SDL2-2.0.16.zip - URL_HASH SHA1=4d09aad9b76b5d51366bebeded8bec46dcf67ef6 + URL https://www.libsdl.org/release/SDL2-2.28.4.zip + URL_HASH SHA1=0d9e0da0e935c4f0524cfd16d47d38b6045b9573 ) FetchContent_MakeAvailable(sdl2) target_link_libraries(jngl PRIVATE SDL2-static)