From 802bd61f75617760fb53fd50ea26a04adece33a6 Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Sun, 10 Aug 2025 17:38:59 +0100 Subject: [PATCH] Really fix CMake minimum version We need ... not .. to separate the versions. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f83d95..4dc5c84 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1..3.31 FATAL_ERROR) +cmake_minimum_required(VERSION 3.1...3.31 FATAL_ERROR) project(onak VERSION 0.6.3 LANGUAGES C) include(CheckSymbolExists) -- 2.39.5