diff options
| author | Christian Marangi | 2025-10-03 21:41:35 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-03 21:41:35 +0000 |
| commit | dc909ca71bc884c0e5362e1d7cc7808696cb2add (patch) | |
| tree | 90456c90623d22e3bceebf28574a7f4cab6202a8 | |
| parent | 88ae8f208dd313f69e268234f7db55956aef1cb9 (diff) | |
| download | uclient-dc909ca71bc884c0e5362e1d7cc7808696cb2add.tar.gz | |
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-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c4aced7..cb21264 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) INCLUDE(CheckIncludeFiles) |