From 909fe491693c20b0c3ff539d77f84e2466e7b959 Mon Sep 17 00:00:00 2001 From: sspillane Date: Thu, 19 Oct 2023 11:07:17 -0400 Subject: [PATCH] Backdate required cmake to 3.22 In this commit, I propose to backdate cmake to version 3.22, as that is the currently-supported Ubuntu LTS version. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e0993a..54d8400 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required( VERSION 3.25 ) +cmake_minimum_required( VERSION 3.22 ) project( Alepha ) include( cmake/rules.cmake )