From 94076ab27800e9cba41ab05e6bb2edbb421154d9 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Tue, 4 Nov 2025 21:28:24 +0000 Subject: [PATCH] CMakeLists.txt: fix cmake-4 build (raise minimum version to 3.10) Without the change the build on cmake-4 fails as: CMake Error at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.5 has been removed from CMake. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 79f57c4..bf4288e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ project(dmsdos) -cmake_minimum_required(VERSION 3.2) +cmake_minimum_required(VERSION 3.10) set(CMAKE_C_STANDARD 11)