From c7f56190eed248ec429b0dd2d04cd6c0cdf0b720 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 16 May 2024 17:06:07 +0200 Subject: [PATCH] (macOS) Changed the minimum required OS version from 10.15 'Catalina' to 11 'Big Sur' --- CMakeLists.txt | 4 ++-- es-app/assets/ES-DE_Info.plist | 2 +- tools/macOS_dependencies_build.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 495eaa801..571b4d274 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: MIT # -# ES-DE +# ES-DE Frontend # CMakeLists.txt # # Main CMake configuration file. @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.13) if(APPLE) # Set this to the minimum supported macOS version, and also update # es-app/assets/ES-DE_Info.plist accordingly. - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15 CACHE STRING "macOS deployment target") + set(CMAKE_OSX_DEPLOYMENT_TARGET 11.0 CACHE STRING "macOS deployment target") # This optional variable is used for code signing the DMG installer. set(MACOS_CODESIGN_IDENTITY "" CACHE STRING "macOS code signing certificate identity") endif() diff --git a/es-app/assets/ES-DE_Info.plist b/es-app/assets/ES-DE_Info.plist index 76c9e710c..93d934df3 100644 --- a/es-app/assets/ES-DE_Info.plist +++ b/es-app/assets/ES-DE_Info.plist @@ -29,7 +29,7 @@ LSApplicationCategoryType public.app-category.education LSMinimumSystemVersion - 10.15.0 + 11.0.0 LSUIPresentationMode 3 NSHighResolutionCapable diff --git a/tools/macOS_dependencies_build.sh b/tools/macOS_dependencies_build.sh index ba8395c88..60a9e52da 100755 --- a/tools/macOS_dependencies_build.sh +++ b/tools/macOS_dependencies_build.sh @@ -12,7 +12,7 @@ # This script needs to run from the root of the repository. # -export MACOSX_DEPLOYMENT_TARGET=10.15 +export MACOSX_DEPLOYMENT_TARGET=11.0 # How many CPU threads to use for the compilation. JOBS=4