Browse Source
[cmake] Bump minimum version to 3.31 (#4055 )
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 <crueter@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4055
Reviewed-by: Lizzie <lizzie@eden-emu.dev>
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
pull/3835/head
crueter
3 days ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
3 changed files with
3 additions and
3 deletions
CMakeLists.txt
docs/Deps.md
src/android/app/build.gradle.kts
@ -1,7 +1,7 @@
# S P D X - F i l e C o p y r i g h t T e x t : C o p y r i g h t 2 0 2 6 E d e n E m u l a t o r P r o j e c t
# S P D X - F i l e C o p y r i g h t T e x t : C o p y r i g h t 2 0 2 6 E d e n E m u l a t o r P r o j e c t
# S P D X - L i c e n s e - I d e n t i f i e r : G P L - 3 . 0 - o r - l a t e r
# S P D X - L i c e n s e - I d e n t i f i e r : G P L - 3 . 0 - o r - l a t e r
cmake_minimum_required ( VERSION 3.22 )
cmake_minimum_required ( VERSION 3.31 )
project ( yuzu )
project ( yuzu )
@ -16,7 +16,7 @@ To build Eden, you MUST have a C++ compiler.
The following additional tools are also required:
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
* **[Git](https://git-scm.com/)** for version control
* * *[Windows installer ](https://gitforwindows.org )**
* * *[Windows installer ](https://gitforwindows.org )**
* **[Python3](https://www.python.org/downloads/)** 3.10+ - necessary to download external repositories
* **[Python3](https://www.python.org/downloads/)** 3.10+ - necessary to download external repositories
@ -256,7 +256,7 @@ android {
externalNativeBuild {
externalNativeBuild {
cmake {
cmake {
version = "3.22.1 "
version = "3.31.6 "
path = file("${edenDir}/CMakeLists.txt")
path = file("${edenDir}/CMakeLists.txt")
}
}
}
}