From 5572ba4e7290f63cfa32cccde7c5c4f7e132fb20 Mon Sep 17 00:00:00 2001 From: John Goetz Date: Tue, 27 Feb 2024 08:03:44 -0800 Subject: [PATCH] CMake: update minimum cmake version to avoid warnings CMake 3.27 issued a deprecation warning saying cmake <3.5 would no longer be supported. closes #86 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72f157f..5aaa7f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.5) project(argh)