summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Marangi2025-10-03 21:28:51 +0000
committerChristian Marangi2025-10-03 21:28:51 +0000
commitc4c72b1b07945ee192361dc751291a7c98d6adcd (patch)
treea19f7d0d5ec070a0ccb5ac46e0babaf7e4c323e6
parentf1f65026a94137c91b5466b149ef3ea3f20091e9 (diff)
downloadusign-master.tar.gz
CMakeLists: update cmake minimum required version to 3.10HEADmaster
New cmake version 4.0 requires at least 3.5 version as the minimum required version with it increased to 3.10 in to-be-released cmake versions. Set the minimum required version to 3.10 to future-proof for future cmake version. Suggested-by: Hannu Nyman <hannu.nyman@iki.fi> Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 50a9226..8e8db34 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.10)
PROJECT(usign C)
ADD_DEFINITIONS(-O2 -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations)