From e190e7944e42309a60b31c9d025c877219e7f878 Mon Sep 17 00:00:00 2001 From: Victor Zhang Date: Mon, 9 Dec 2024 10:53:38 -0800 Subject: [PATCH] Update cmake minimum requirement to 3.10 CMake warns on the current minimum requirement (3.5). Update to 3.10. This means support is still available for the default on Ubuntu 18.04, which exited LTS standard in April of 2023. [draft] --- build/cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/cmake/CMakeLists.txt b/build/cmake/CMakeLists.txt index 399b818fc..b43671cc2 100644 --- a/build/cmake/CMakeLists.txt +++ b/build/cmake/CMakeLists.txt @@ -7,7 +7,7 @@ # in the COPYING file in the root directory of this source tree). # ################################################################ -cmake_minimum_required(VERSION 3.5 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10 FATAL_ERROR) # As of 2018-12-26 ZSTD has been validated to build with cmake version 3.13.2 new policies. # Set and use the newest cmake policies that are validated to work