From 2f788d7d08331d49e8302790d2637cb3d3a3ffc0 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Tue, 26 May 2026 18:20:50 -0400 Subject: [PATCH] cmake: Reduce minimum CMake version from 3.25 to 3.22 There isn't anything in 3.25 that we actually need, so we can reduce the minimum requirement. 3.22 is commonly available across many package managers. For a list of the changes in `FetchContent`, see: https://cmake.org/cmake/help/latest/module/FetchContent.html --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f1d319e8d..ca29ce0d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.25) +cmake_minimum_required(VERSION 3.22) #this change avoid the warning that appear when we include raylib using Cmake fatch content project(raylib)