From 6740ff8a4a950fce9ebf7b2cc8565689103be084 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Thu, 12 Dec 2024 22:02:59 +0100 Subject: [PATCH] cmake: update minimum required version to 3.10 This fixes a deprecation warning that compatibility with CMake < 3.10 will be removed from a future version of CMake. Resolves: dbus/dbus#533 Signed-off-by: Ralf Habacker (cherry picked from commit ca39b3799ea73fb9876e306c7d87b0856207fee1) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c2f28800..3d96059e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9) +cmake_minimum_required(VERSION 3.10) # we do not need to have WIN32 defined set(CMAKE_LEGACY_CYGWIN_WIN32 0)