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

Projucer: Added macOS 10.15 and iOS 13 support

This commit is contained in:
ed 2019-06-24 15:05:51 +01:00
parent bdeaeaf368
commit 49a7b30bae

View file

@ -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()
<<"; ";