summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Marangi2025-10-03 22:05:58 +0000
committerChristian Marangi2025-10-03 22:05:58 +0000
commiteeb6fcf914139a07bcd337cf90033239f1a8b1d1 (patch)
tree41b718720d3fd38c531f68d290a5193a46d4bbff
parent49056d178f42da98048a5d4c23f83a6f6bc6dd80 (diff)
downloadlibubox-eeb6fcf914139a07bcd337cf90033239f1a8b1d1.tar.gz
examples: CMakeLists: update cmake minimum required version to 3.10
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--examples/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index 04f18b0..0ca5281 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.6)
+cmake_minimum_required(VERSION 3.10)
IF (BUILD_EXAMPLES)
PROJECT(ubox-examples C)