From bbf311348b1bd42e7d395def04ca2d08f9e2ff79 Mon Sep 17 00:00:00 2001 From: wangchengdong Date: Thu, 26 Feb 2026 09:55:56 +0800 Subject: [PATCH] cmake: bump minimum required CMake version to 3.20 Raise the minimum required CMake version to 3.20, as the build system now uses the `cmake_path()` command, which is available starting from CMake 3.20. Signed-off-by: Chengdong Wang --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 54c5611cf00..0dc50fc63a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ # Request a version available on latest Ubuntu LTS (20.04) -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.20) # Handle newer CMake versions correctly by setting policies