summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Narr the Reg2023-05-20 12:42:37 -0600
committerGravatar Narr the Reg2023-06-21 17:11:14 -0600
commit106b61b1e0a435be883a780c8706854635e84acf (patch)
tree93c4f0eb4befa7940b79a535b075d1a1f2839d7c /CMakeLists.txt
parentMerge pull request #10864 from t895/disable-mali-driver (diff)
downloadyuzu-106b61b1e0a435be883a780c8706854635e84acf.tar.gz
yuzu-106b61b1e0a435be883a780c8706854635e84acf.tar.xz
yuzu-106b61b1e0a435be883a780c8706854635e84acf.zip
externals: Update sdl to 2.28.0
Diffstat (limited to '')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6d3146c9e..f5ef0ef50 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -489,7 +489,7 @@ if (ENABLE_SDL2)
489 if (YUZU_USE_BUNDLED_SDL2) 489 if (YUZU_USE_BUNDLED_SDL2)
490 # Detect toolchain and platform 490 # Detect toolchain and platform
491 if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64) 491 if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64)
492 set(SDL2_VER "SDL2-2.0.18") 492 set(SDL2_VER "SDL2-2.28.0")
493 else() 493 else()
494 message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable YUZU_USE_BUNDLED_SDL2 and provide your own.") 494 message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable YUZU_USE_BUNDLED_SDL2 and provide your own.")
495 endif() 495 endif()
@@ -509,7 +509,7 @@ if (ENABLE_SDL2)
509 elseif (YUZU_USE_EXTERNAL_SDL2) 509 elseif (YUZU_USE_EXTERNAL_SDL2)
510 message(STATUS "Using SDL2 from externals.") 510 message(STATUS "Using SDL2 from externals.")
511 else() 511 else()
512 find_package(SDL2 2.0.18 REQUIRED) 512 find_package(SDL2 2.26.4 REQUIRED)
513 endif() 513 endif()
514endif() 514endif()
515 515