1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Update the default minimum deployment targets

Xcode 14 has minimum deployment targets of macos 10.13 and iOS 11.
This commit is contained in:
Tom Poole 2022-11-09 14:15:14 +00:00
parent 128e980be4
commit 473283fa19
17 changed files with 61 additions and 40 deletions

View file

@ -807,10 +807,10 @@ protected:
: BuildConfiguration (p, t, e),
iOS (isIOS),
macOSBaseSDK (config, Ids::macOSBaseSDK, getUndoManager()),
macOSDeploymentTarget (config, Ids::macOSDeploymentTarget, getUndoManager(), "10.11"),
macOSDeploymentTarget (config, Ids::macOSDeploymentTarget, getUndoManager(), "10.13"),
macOSArchitecture (config, Ids::osxArchitecture, getUndoManager(), macOSArch_Default),
iosBaseSDK (config, Ids::iosBaseSDK, getUndoManager()),
iosDeploymentTarget (config, Ids::iosDeploymentTarget, getUndoManager(), "9.3"),
iosDeploymentTarget (config, Ids::iosDeploymentTarget, getUndoManager(), "11.0"),
customXcodeFlags (config, Ids::customXcodeFlags, getUndoManager()),
plistPreprocessorDefinitions (config, Ids::plistPreprocessorDefinitions, getUndoManager()),
codeSignIdentity (config, Ids::codeSigningIdentity, getUndoManager()),
@ -859,7 +859,7 @@ protected:
"The version of the macOS SDK to link against." + sdkInfoString + "10.11.");
props.add (new TextPropertyComponent (macOSDeploymentTarget, "macOS Deployment Target", 8, false),
"The minimum version of macOS to target." + sdkInfoString + "10.7.");
"The minimum version of macOS to target." + sdkInfoString + "10.9.");
props.add (new ChoicePropertyComponent (macOSArchitecture, "macOS Architecture",
{ "Native architecture of build machine", "Standard 32-bit", "Standard 32/64-bit", "Standard 64-bit" },