From c4cf82668cdcdb20d0059b4f5753da89d8279dc7 Mon Sep 17 00:00:00 2001 From: Jose Luis Blanco-Claraco Date: Fri, 8 Nov 2024 00:01:30 +0100 Subject: [PATCH] Bump min required cmake version to 3.9 In the top-level cmake file. It was 3.5 and recent cmake versions complain about it becoming deprecate. Also, the wrap directory already required 3.9 anyhow... --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 617accc2ea..e3b462eec5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.9) if (POLICY CMP0082) cmake_policy(SET CMP0082 NEW) # install from sub-directories immediately endif()