From 354ebcb19c62f6eb8ebb3feec2f9ccabd47ca1e9 Mon Sep 17 00:00:00 2001 From: OpenSauce Date: Thu, 1 Aug 2024 16:09:34 +0000 Subject: [PATCH] Bump CMake MacOS compilation target to MacOS 13 The minimum required MacOS version for Lime3DS was already MacOS 13 due to dependencies, but until now the compilation target was set to MacOS 11 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21765e607..a1c06fbdd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,8 +32,8 @@ if (APPLE) set(CMAKE_C_ARCHIVE_FINISH " -no_warning_for_no_symbols -c ") set(CMAKE_CXX_ARCHIVE_FINISH " -no_warning_for_no_symbols -c ") - # Minimum macOS 11 - set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0") + # Minimum macOS 13 + set(CMAKE_OSX_DEPLOYMENT_TARGET "13.0") endif() if (CMAKE_BUILD_TYPE STREQUAL Debug)