diff options
| author | Christian Marangi | 2025-10-03 22:06:50 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-03 22:06:50 +0000 |
| commit | 3b3501abb63d9aa59ccc20acf5f2c2be48190b25 (patch) | |
| tree | b3f9c42f915bf251cec7f13e226b805b0db5e8f8 | |
| parent | ebfe7d0f284478050709971aee0660bb8a9fddc6 (diff) | |
| download | procd-3b3501abb63d9aa59ccc20acf5f2c2be48190b25.tar.gz | |
upgraded: 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-- | upgraded/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgraded/CMakeLists.txt b/upgraded/CMakeLists.txt index 09cf472..99ef2e9 100644 --- a/upgraded/CMakeLists.txt +++ b/upgraded/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(upgraded C) FIND_PATH(ubox_include_dir libubox/uloop.h) |