(macOS) Changed the minimum required OS version from 10.15 'Catalina' to 11 'Big Sur'

This commit is contained in:
Leon Styhre 2024-05-16 17:06:07 +02:00
parent 33dc24a203
commit c7f56190ee
3 changed files with 4 additions and 4 deletions

View file

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

View file

@ -29,7 +29,7 @@
<key>LSApplicationCategoryType</key>
<string>public.app-category.education</string>
<key>LSMinimumSystemVersion</key>
<string>10.15.0</string>
<string>11.0.0</string>
<key>LSUIPresentationMode</key>
<integer>3</integer>
<key>NSHighResolutionCapable</key>

View file

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