From 227e2990070a8fd7f75442433571f031899662a4 Mon Sep 17 00:00:00 2001 From: crueter Date: Wed, 3 Jun 2026 23:58:42 -0400 Subject: [PATCH] [cmake] Bump minimum version to 3.31 Ubuntu 24.04 can't hurt us anymore. Some other deps may have their versions raised, but there's not much of an incentive so we'll keep it as is for now. Signed-off-by: crueter --- CMakeLists.txt | 2 +- docs/Deps.md | 2 +- src/android/app/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 268965bff1..46f418ba23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project # SPDX-License-Identifier: GPL-3.0-or-later -cmake_minimum_required(VERSION 3.22) +cmake_minimum_required(VERSION 3.31) project(yuzu) diff --git a/docs/Deps.md b/docs/Deps.md index 2c1c3589df..612e423d9f 100644 --- a/docs/Deps.md +++ b/docs/Deps.md @@ -16,7 +16,7 @@ To build Eden, you MUST have a C++ compiler. The following additional tools are also required: -* **[CMake](https://www.cmake.org/)** 3.22+ - already included with the Android SDK +* **[CMake](https://www.cmake.org/)** 3.31+ - already included with the Android SDK * **[Git](https://git-scm.com/)** for version control * **[Windows installer](https://gitforwindows.org)** * **[Python3](https://www.python.org/downloads/)** 3.10+ - necessary to download external repositories diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index ccc5b3cabe..a4076978a1 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -256,7 +256,7 @@ android { externalNativeBuild { cmake { - version = "3.22.1" + version = "3.31.6" path = file("${edenDir}/CMakeLists.txt") } }