Skip to content

Commit

Permalink
build: update minimum cmake to 3.10 (libuv#4604)
Browse files Browse the repository at this point in the history
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: libuv#4603
  • Loading branch information
bnoordhuis authored Nov 15, 2024
1 parent d4ab6fb commit 2d8371a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2d8371a

Please sign in to comment.