From 3b6686b3ef44d6b2e67b5d24b7dbdb7c71190951 Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Tue, 4 Jan 2022 14:23:17 -0800 Subject: [PATCH] Updated default SDL2 cmake FetchContent to 2.0.18 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7e1da4..bcbadc7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -100,7 +100,7 @@ if (PLATFORM_SDL2) FetchContent_Declare( SDL2 GIT_REPOSITORY https://github.com/libsdl-org/SDL - GIT_TAG release-2.0.14 # grab latest stable release + GIT_TAG release-2.0.18 # grab latest stable release ) FetchContent_GetProperties(SDL2) if (NOT sdl2_POPULATED)