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
This commit is contained in:
OpenSauce 2024-08-01 16:09:34 +00:00 committed by GitHub
parent 6f1fdcbb19
commit 354ebcb19c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,8 +32,8 @@ if (APPLE)
set(CMAKE_C_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
set(CMAKE_CXX_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
# 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)