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 ab31d11c8d

Signed-off-by: Andreas Sturmlechner <[email protected]>
This commit is contained in:
Andreas Sturmlechner
2025-10-22 16:37:21 +02:00
committed by Urs Fleisch
parent 11efd2dd10
commit cbb3de6836
+1 -1
View File
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.10..3.31)
cmake_minimum_required(VERSION 3.10...3.31)
project(taglib)