From 666a286438da85f58b1aaaf0834622eb6a41d133 Mon Sep 17 00:00:00 2001 From: past-due <30942300+past-due@users.noreply.github.com> Date: Fri, 21 Jun 2024 18:42:54 -0400 Subject: [PATCH] [macOS] Bump min MACOSX_DEPLOYMENT_TARGET to 10.12 As libplum relies on macOS 10.12+ functionality (clock_gettime). --- configure_mac.cmake | 4 ++-- platforms/macos/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure_mac.cmake b/configure_mac.cmake index be8ccfcdd4f..a3f1f508c07 100644 --- a/configure_mac.cmake +++ b/configure_mac.cmake @@ -10,8 +10,8 @@ cmake_minimum_required(VERSION 3.5...3.30) ######################################################## -# WZ minimum supported macOS deployment target (< 10.9 is untested) -set(MIN_SUPPORTED_MACOSX_DEPLOYMENT_TARGET "10.9") +# WZ minimum supported macOS deployment target (< 10.12 is untested) +set(MIN_SUPPORTED_MACOSX_DEPLOYMENT_TARGET "10.12") # Vulkan SDK set(VULKAN_SDK_VERSION "1.3.268.1") diff --git a/platforms/macos/README.md b/platforms/macos/README.md index 544ccfcb576..b4cc9f299c0 100644 --- a/platforms/macos/README.md +++ b/platforms/macos/README.md @@ -116,7 +116,7 @@ You can also simply open the project in Xcode, and build the `warzone2100` schem ## Deployment: -The macOS port produces a 64-bit [self-contained application bundle](https://developer.apple.com/library/content/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW13) that requires **macOS 10.9+**\* to run. +The macOS port produces a 64-bit [self-contained application bundle](https://developer.apple.com/library/content/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW13) that requires **macOS 10.12+**\* to run. > \* See _Setup & Configuration_ for how to set the minimum deployment target.