Update CMakeLists.txt

updated to force the usage of gcc version 15
This commit is contained in:
JadeHarleyFan413612 2026-03-05 23:24:17 -07:00 committed by GitHub
parent 93a871bc04
commit c4bd771556
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
################################################################################