mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 10:18:34 -06:00
Fix the build for version 2.5 of Xcode.
This commit is contained in:
@@ -2681,6 +2681,15 @@ void cmGlobalXCodeGenerator
|
||||
{
|
||||
osxArch = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
}
|
||||
else if(this->XcodeVersion <= 25)
|
||||
{
|
||||
#ifdef __i386
|
||||
osxArch = "i386";
|
||||
#endif
|
||||
#ifdef __ppc__
|
||||
osxArch = "ppc";
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
osxArch = "$(ARCHS_STANDARD_32_BIT)";
|
||||
|
||||
Reference in New Issue
Block a user