From 49a7b30bae880874ce3e8262ba2762df4101f2d9 Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 24 Jun 2019 15:05:51 +0100 Subject: [PATCH] Projucer: Added macOS 10.15 and iOS 13 support --- .../Source/ProjectSaving/jucer_ProjectExport_Xcode.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h index f0dff5f9c6..9797668d03 100644 --- a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h +++ b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h @@ -34,12 +34,12 @@ namespace static const char* const iOSDefaultVersion = "9.3"; static const StringArray iOSVersions { "7.0", "7.1", "8.0", "8.1", "8.2", "8.3", "8.4", "9.0", "9.1", "9.2", "9.3", "10.0", "10.1", "10.2", "10.3", - "11.0", "12.0" }; + "11.0", "12.0", "13.0" }; static const int oldestDeploymentTarget = 7; static const int defaultDeploymentTarget = 11; static const int oldestSDKVersion = 11; - static const int currentSDKVersion = 14; + static const int currentSDKVersion = 15; static const int minimumAUv3SDKVersion = 11; static String getVersionName (int version) { return "10." + String (version); } @@ -1736,7 +1736,8 @@ public: { xcodeOtherRezFlags = "-d ppc_$ppc -d i386_$i386 -d ppc64_$ppc64 -d x86_64_$x86_64" " -I /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Versions/A/Headers" - " -I \\\"$(DEVELOPER_DIR)/Extras/CoreAudio/AudioUnits/AUPublic/AUBase\\\""; + " -I \\\"$(DEVELOPER_DIR)/Extras/CoreAudio/AudioUnits/AUPublic/AUBase\\\"" + " -I \\\"$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioUnit.framework/Headers\\\""; xcodeFrameworks.addTokens ("AudioUnit CoreAudioKit", false); @@ -3480,7 +3481,7 @@ private: { String attributes; - attributes << "{ LastUpgradeCheck = 1010; " + attributes << "{ LastUpgradeCheck = 1100; " << "ORGANIZATIONNAME = " << getProject().getCompanyNameString().quoted() <<"; ";