X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3b2c81c759c2653c32a870c0fb027d51045b47e6..4254f672164bdc7e171c33a5663facbe6afa0833:/build/tools/builder.py?ds=sidebyside diff --git a/build/tools/builder.py b/build/tools/builder.py index 7c067ae8a8..5eecbe87a2 100755 --- a/build/tools/builder.py +++ b/build/tools/builder.py @@ -141,8 +141,8 @@ class GNUMakeBuilder(Builder): Builder.__init__(self, commandName=commandName, formatName=formatName) -class XCodeBuilder(Builder): - def __init__(self, commandName="xcodebuild", formatName="XCode"): +class XcodeBuilder(Builder): + def __init__(self, commandName="xcodebuild", formatName="Xcode"): Builder.__init__(self, commandName=commandName, formatName=formatName) @@ -223,7 +223,7 @@ class MSVCProjectBuilder(Builder): return False -builders = [GNUMakeBuilder, XCodeBuilder, AutoconfBuilder, MSVCBuilder, MSVCProjectBuilder] +builders = [GNUMakeBuilder, XcodeBuilder, AutoconfBuilder, MSVCBuilder, MSVCProjectBuilder] def getAvailableBuilders(): availableBuilders = {}