diff options
| author | Christian Marangi | 2025-10-03 21:35:08 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-03 21:35:08 +0000 |
| commit | cfb93f105ca2b5e81c5e489076f38d5786f346ea (patch) | |
| tree | 972150f97e29713d477f517c398326223a78c6c6 | |
| parent | d4fa147470aab6aee4b23ef6327201c6be069ab1 (diff) | |
| download | rpcd-cfb93f105ca2b5e81c5e489076f38d5786f346ea.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 480d10b..56255ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) INCLUDE(CheckFunctionExists) |