From 9aa715388ef0d7f63c31da34bb82bf7d63bf5bd2 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Tue, 4 Aug 2026 19:45:19 +0200 Subject: [PATCH] Fix CMake version range --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c232f78..424abaa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Distributed under the Boost Software License, Version 1.0. # See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt -cmake_minimum_required(VERSION 3.16..3.20) +cmake_minimum_required(VERSION 3.16...3.20) project(turtle VERSION 2.0.0 LANGUAGES CXX) if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)