From cbb3de68364e2b2f31461551be26592285d93add Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Wed, 22 Oct 2025 00:11:25 +0200 Subject: [PATCH] Fix cmake_minimum_required version range typo While CMake appears to accept the ".." notation, it does not correctly apply the policy_max version in that case. Amends ab31d11c8d1e04eb710aab7902d9564b4947de8c Signed-off-by: Andreas Sturmlechner --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e631da5..4ea44e54 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.10..3.31) +cmake_minimum_required(VERSION 3.10...3.31) project(taglib)