From 5efed427bc3eb59113912448542da6c123918996 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Tue, 4 Aug 2026 19:48:38 +0200 Subject: [PATCH] Fix `cmake_minimum_required` version range It needs 3 dots --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 06f39a0..705a811 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.16..3.20) +cmake_minimum_required(VERSION 3.16...3.20) project(libsamplerate VERSION 0.2.2 LANGUAGES C)