From 22500708fda0e3df8ac5869f7a3c4d4b54491f56 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Mon, 1 Sep 2025 11:56:43 +0300 Subject: [PATCH] Change minimum required CMake version to 3.20 This is the same requirement as for building WPE WebKit itself. --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index db9ae509..95095e96 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,4 @@ -cmake_minimum_required(VERSION 3.0) -cmake_policy(VERSION 3.0) +cmake_minimum_required(VERSION 3.20) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") include(VersioningUtils)