From 3875c7de07099a1c6584b9dc9647db618d469deb Mon Sep 17 00:00:00 2001 From: James Zern Date: Tue, 31 Aug 2021 13:21:46 -0700 Subject: [PATCH] CMakeLists.txt: set minimum version to 3.7 cmake/cpu.cmake (at least) requires 3.7 due to its use of GREATER_EQUAL: https://cmake.org/cmake/help/latest/release/3.7.html Bug: webp:538 Change-Id: I63511226a593218e1f4d3b1a7c4c998de3ba2ae1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 05f0941c..37619652 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ # in the file PATENTS. All contributing project authors may # be found in the AUTHORS file in the root of the source tree. -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.7) if(POLICY CMP0072) cmake_policy(SET CMP0072 NEW)