Bump CMake MacOS compilation target to MacOS 13

The minimum required MacOS version was already MacOS 13 due to dependencies, but until now the compilation target was set to MacOS 11
This commit is contained in:
OpenSauce
2025-03-24 17:56:24 +00:00
parent d406c5d81e
commit bd1f5b978b
+2 -2
View File
@@ -41,8 +41,8 @@ if (APPLE)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE BOTH)
else()
# Minimum macOS 11
set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0")
# Minimum macOS 13
set(CMAKE_OSX_DEPLOYMENT_TARGET "13.0")
endif()
endif()