From c4bd771556e60ada8e503fd1b3e8b2d19d5fd7d1 Mon Sep 17 00:00:00 2001 From: JadeHarleyFan413612 Date: Thu, 5 Mar 2026 23:24:17 -0700 Subject: [PATCH] Update CMakeLists.txt updated to force the usage of gcc version 15 --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21313c606..dd2323889 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,9 @@ cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR) +#specify the usage of gcc-15 for the compiler +set(CMAKE_C_COMPILER "gcc-15") +set(CMAKE_CXX_COMPILER "g++-15") + project(MinecraftConsoles C CXX) ################################################################################