diff options
| author | Christian Marangi | 2025-10-03 22:05:58 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-03 22:05:58 +0000 |
| commit | eeb6fcf914139a07bcd337cf90033239f1a8b1d1 (patch) | |
| tree | 41b718720d3fd38c531f68d290a5193a46d4bbff | |
| parent | 49056d178f42da98048a5d4c23f83a6f6bc6dd80 (diff) | |
| download | libubox-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.txt | 2 |
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) |