From b1547922257e484cb18e1719bdfc18f4789eb560 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20H=C3=A4rdeman?= Date: Tue, 16 Sep 2025 17:35:26 +0200 Subject: [PATCH] odhcpd: bump minimum cmake version MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This removes warnings with more recent versions of cmake. 3.13 is already required by e.g. ubus, so it seems like a reasonable minimum. Signed-off-by: David Härdeman --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1588637..de9a4e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.13) cmake_policy(SET CMP0015 NEW) # Project Definition -- 2.30.2