From a6f03530edc12695b8721f30bdea7027d1b5ac4f Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Mon, 9 Mar 2026 02:20:06 -0400 Subject: [PATCH] Correct minimum CMake version required Turns out the status messages use 3.17 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index acddf23f..fb4062d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: MIT -# 3.9 required for LTO checks -cmake_minimum_required(VERSION 3.9...4.2 FATAL_ERROR) +# 3.17 required for LTO checks messages +cmake_minimum_required(VERSION 3.17...4.2 FATAL_ERROR) project(rgbds LANGUAGES CXX)