Globally rename all occurrences of "XCode" to "Xcode".
The official spelling of the Apple IDE doesn't capitalize "C" so neither should we. See #12165. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -10,11 +10,11 @@ makeprojects is an AppleScript that uses the XML Tools from
|
|||||||
http://www.latenightsw.com/freeware/XMLTools2/
|
http://www.latenightsw.com/freeware/XMLTools2/
|
||||||
|
|
||||||
the reason for this script is to support a single place of definition for the files needed
|
the reason for this script is to support a single place of definition for the files needed
|
||||||
for a certain platform by building XCode projects from the bakefiles files.bkl file list.
|
for a certain platform by building Xcode projects from the bakefiles files.bkl file list.
|
||||||
|
|
||||||
it creates new projects from the ..._in.xcodeproj templates in this folder and then
|
it creates new projects from the ..._in.xcodeproj templates in this folder and then
|
||||||
reads in the files lists from the files.bkl in the build/bakefiles directory, evaluates the
|
reads in the files lists from the files.bkl in the build/bakefiles directory, evaluates the
|
||||||
conditions in these definitions and then adds the correct files to the newly created XCode
|
conditions in these definitions and then adds the correct files to the newly created Xcode
|
||||||
projects
|
projects
|
||||||
|
|
||||||
if you only need a specific target and not all three of them (carbon, cocoa, iphone) then you can
|
if you only need a specific target and not all three of them (carbon, cocoa, iphone) then you can
|
||||||
|
@@ -141,8 +141,8 @@ class GNUMakeBuilder(Builder):
|
|||||||
Builder.__init__(self, commandName=commandName, formatName=formatName)
|
Builder.__init__(self, commandName=commandName, formatName=formatName)
|
||||||
|
|
||||||
|
|
||||||
class XCodeBuilder(Builder):
|
class XcodeBuilder(Builder):
|
||||||
def __init__(self, commandName="xcodebuild", formatName="XCode"):
|
def __init__(self, commandName="xcodebuild", formatName="Xcode"):
|
||||||
Builder.__init__(self, commandName=commandName, formatName=formatName)
|
Builder.__init__(self, commandName=commandName, formatName=formatName)
|
||||||
|
|
||||||
|
|
||||||
@@ -223,7 +223,7 @@ class MSVCProjectBuilder(Builder):
|
|||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
builders = [GNUMakeBuilder, XCodeBuilder, AutoconfBuilder, MSVCBuilder, MSVCProjectBuilder]
|
builders = [GNUMakeBuilder, XcodeBuilder, AutoconfBuilder, MSVCBuilder, MSVCProjectBuilder]
|
||||||
|
|
||||||
def getAvailableBuilders():
|
def getAvailableBuilders():
|
||||||
availableBuilders = {}
|
availableBuilders = {}
|
||||||
|
@@ -82,7 +82,7 @@ in the distribution.
|
|||||||
wxOSX/Carbon is a port of wxWidgets for the Macintosh OS platform.
|
wxOSX/Carbon is a port of wxWidgets for the Macintosh OS platform.
|
||||||
Currently MacOS X 10.4 or higher are supported. wxOSX/Carbon can
|
Currently MacOS X 10.4 or higher are supported. wxOSX/Carbon can
|
||||||
be compiled both using Apple's command line developer tools
|
be compiled both using Apple's command line developer tools
|
||||||
as well as Apple's XCode IDE. wxOSX/Carbon supports both the Intel
|
as well as Apple's Xcode IDE. wxOSX/Carbon supports both the Intel
|
||||||
and PowerPC architectures and can be used to produce
|
and PowerPC architectures and can be used to produce
|
||||||
"universal binaries" in order create application which can run
|
"universal binaries" in order create application which can run
|
||||||
both architecture. Unfortunately, wxOSX/Carbon does not support any
|
both architecture. Unfortunately, wxOSX/Carbon does not support any
|
||||||
|
@@ -1359,7 +1359,7 @@
|
|||||||
// override some settings for Metrowerks
|
// override some settings for Metrowerks
|
||||||
//
|
//
|
||||||
// VZ: isn't this file only used when building with Metrowerks anyhow?
|
// VZ: isn't this file only used when building with Metrowerks anyhow?
|
||||||
// CS: no, it is also used by the XCode projects
|
// CS: no, it is also used by the Xcode projects
|
||||||
#ifdef __MWERKS__
|
#ifdef __MWERKS__
|
||||||
#undef wxUSE_DEBUG_CONTEXT
|
#undef wxUSE_DEBUG_CONTEXT
|
||||||
#define wxUSE_DEBUG_CONTEXT 1
|
#define wxUSE_DEBUG_CONTEXT 1
|
||||||
|
Reference in New Issue
Block a user