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 <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-10-22 00:11:25 +02:00
committed by Urs Fleisch
parent 11efd2dd10
commit cbb3de6836

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.10..3.31)
cmake_minimum_required(VERSION 3.10...3.31)
project(taglib)