mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-01 03:10:06 +00:00
Introjucer: removed old OSX 10.4 target option.
This commit is contained in:
parent
8419bebe4c
commit
654134ffdb
1 changed files with 3 additions and 3 deletions
|
|
@ -219,8 +219,8 @@ protected:
|
|||
if (getMacCompatibilityVersion().isEmpty())
|
||||
getMacCompatibilityVersionValue() = osxVersionDefault;
|
||||
|
||||
const char* osxVersions[] = { "Use Default", osxVersion10_4, osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 };
|
||||
const char* osxVersionValues[] = { osxVersionDefault, osxVersion10_4, osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 };
|
||||
const char* osxVersions[] = { "Use Default", osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 };
|
||||
const char* osxVersionValues[] = { osxVersionDefault, osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 };
|
||||
|
||||
props.add (new ChoicePropertyComponent (getMacSDKVersionValue(), "OSX Base SDK Version",
|
||||
StringArray (osxVersions), Array<var> (osxVersionValues)),
|
||||
|
|
@ -672,7 +672,7 @@ private:
|
|||
const String sdk (config.getMacSDKVersion());
|
||||
const String sdkCompat (config.getMacCompatibilityVersion());
|
||||
|
||||
if (sdk == osxVersion10_5) s.add ("SDKROOT = macosx10.5");
|
||||
if (sdk == osxVersion10_5) s.add ("SDKROOT = macosx10.5");
|
||||
else if (sdk == osxVersion10_6) s.add ("SDKROOT = macosx10.6");
|
||||
else if (sdk == osxVersion10_7) s.add ("SDKROOT = macosx10.7");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue