From 3dabf413de8affb279ac00d575784149092fcf7a Mon Sep 17 00:00:00 2001 From: Achim Kraus Date: Wed, 19 Aug 2026 07:49:13 +0200 Subject: [PATCH] Update cmake min version. Some features of cmake before 3.10 will not be longer supported by cmake. Signed-off-by: Achim Kraus --- CMakeLists.txt | 2 +- tests/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cbfe4041..98a0b6e5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ # ############################################################################### -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project(tinydtls) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 5bf6f54a..46b8bbcc 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -19,7 +19,7 @@ # ############################################################################### -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project(tinydtls-tests)