From 2d8371a06ef61ed7cb696690c0ce86482c646ba6 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 15 Nov 2024 18:48:13 +0100 Subject: [PATCH] build: update minimum cmake to 3.10 (#4604) Fixes a deprecation warning with new cmake versions. Changing the minimum from 3.9 to 3.10 should be safe because there isn't even a non-EoL'd distro left that ships 3.10, let alone 3.9. Fixes: https://github.com/libuv/libuv/issues/4603 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 28c6df25..805e831f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9) +cmake_minimum_required(VERSION 3.10) if(POLICY CMP0091) cmake_policy(SET CMP0091 NEW) # Enable MSVC_RUNTIME_LIBRARY setting