From 60156347a2a69afe8d5d56bb63d1f2b6e4c314f2 Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Sat, 30 Mar 2024 13:46:00 +0100 Subject: [PATCH] Downgrade minimum cmake version to 3.16 Which matches SDL3 and ubuntu 20.04. I checked the release notes, there were no relevant changed in 3.17 and 3.18. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 80111d168..48fc5525e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ if(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR}) message(FATAL_ERROR "Prevented in-tree build.") endif() -cmake_minimum_required(VERSION 3.18) +cmake_minimum_required(VERSION 3.16) project(love)