Browse Source

Projucer: Fixed a bug where the OSX base SDK version was not being set due to an extra "SDK" being added to the end of the version string

tags/2021-05-28
ed 7 years ago
parent
commit
0f9a0e8c7a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h

+ 1
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h View File

@@ -1631,7 +1631,7 @@ public:
String getOSXDeploymentTarget (const XcodeBuildConfiguration& config, String* sdkRoot = nullptr) const
{
auto sdk = config.getOSXSDKVersionString() + " SDK";
auto sdk = config.getOSXSDKVersionString();
auto sdkCompat = config.getOSXDeploymentTargetString();
// The AUv3 target always needs to be at least 10.11


Loading…
Cancel
Save