mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 13:45:38 +00:00
(macOS) Changed the minimum required OS version from 10.15 'Catalina' to 11 'Big Sur'
This commit is contained in:
parent
33dc24a203
commit
c7f56190ee
|
@ -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()
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue