From d498e05935a3010a1a9fd0b73436a68228f05cd3 Mon Sep 17 00:00:00 2001 From: York Jasper Niebuhr Date: Fri, 24 Oct 2025 14:28:55 +0200 Subject: [PATCH] Updated cmake to use gcc-16 and g++-16 --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 12f3d9a..23bff52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,8 @@ cmake_minimum_required(VERSION 3.16) + +set(CMAKE_C_COMPILER gcc-16 CACHE FILEPATH "C compiler" FORCE) +set(CMAKE_CXX_COMPILER g++-16 CACHE FILEPATH "C++ compiler" FORCE) + project(SelfPatchSLR LANGUAGES C CXX) add_subdirectory(plugin)