From b0f4f6849decd9ba37ddb847bf4fc05a00100e3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Tue, 3 Mar 2026 08:21:01 +0100 Subject: [PATCH] Update CMake minimum required version to 3.10 This is needed to build with modern versions of CMake. --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 502e5e6..a99691e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -# Copyright (C) 2018 Ortega Froysa, Nicolás -# Author: Ortega Froysa, Nicolás +# Copyright (C) 2026 Ortega Froysa, Nicolás +# Author: Ortega Froysa, Nicolás # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.10) project(SpaceShipSim C) set(TARGET_NAME "spaceshipsim")