diff mbox series

[procd] Bump the minimal required CMake version to 3.13

Message ID mailman.80150.1750671150.1866309.openwrt-devel@lists.openwrt.org
State New
Headers show
Series [procd] Bump the minimal required CMake version to 3.13 | expand

Commit Message

kpursoty--- via openwrt-devel June 23, 2025, 9:23 a.m. UTC
The sender domain has a DMARC Reject/Quarantine policy which disallows
sending mailing list messages using the original "From" header.

To mitigate this problem, the original message has been wrapped
automatically by the mailing list software.
From: Yegor Yefremov <yegorslists@googlemail.com>

This is the latest version found among the OpenWrt repositories.

Older CMake versions are marked as deprecated and generate
the related warning:

Compatibility with CMake < 3.5 will be removed from a future
version of CMake.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 CMakeLists.txt          | 2 +-
 upgraded/CMakeLists.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/CMakeLists.txt b/CMakeLists.txt
index e734bf7..bbc3645 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@ 
-cmake_minimum_required(VERSION 2.6)
+cmake_minimum_required(VERSION 3.13)
 
 PROJECT(procd C)
 INCLUDE(GNUInstallDirs)
diff --git a/upgraded/CMakeLists.txt b/upgraded/CMakeLists.txt
index 09cf472..3d42ff7 100644
--- a/upgraded/CMakeLists.txt
+++ b/upgraded/CMakeLists.txt
@@ -1,4 +1,4 @@ 
-cmake_minimum_required(VERSION 2.6)
+cmake_minimum_required(VERSION 3.13)
 
 PROJECT(upgraded C)
 FIND_PATH(ubox_include_dir libubox/uloop.h)