diff options
| author | Christian Marangi | 2025-10-03 21:29:48 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-03 21:29:48 +0000 |
| commit | f17e33d9942750edbd73124e6f03118a98abb402 (patch) | |
| tree | 2d681870b6f781b433cc3fa1405c17013985ae74 | |
| parent | 44365eb1e1165f2a44cb31f404b04cf85031718e (diff) | |
| download | urngd-master.tar.gz | |
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 f415f87..3439495 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(urngd) INCLUDE(GNUInstallDirs) |