MCPcopy Create free account
hub / github.com/nodejs/node / CreateXCConfigurationList

Function CreateXCConfigurationList

tools/gyp/pylib/gyp/generator/xcode.py:101–109  ·  view source on GitHub ↗
(configuration_names)

Source from the content-addressed store, hash-verified

99
100
101def CreateXCConfigurationList(configuration_names):
102 xccl = gyp.xcodeproj_file.XCConfigurationList({"buildConfigurations": []})
103 if len(configuration_names) == 0:
104 configuration_names = ["Default"]
105 for configuration_name in configuration_names:
106 xcbc = gyp.xcodeproj_file.XCBuildConfiguration({"name": configuration_name})
107 xccl.AppendProperty("buildConfigurations", xcbc)
108 xccl.SetProperty("defaultConfigurationName", configuration_names[0])
109 return xccl
110
111
112class XcodeProject:

Callers 2

Finalize1Method · 0.85
GenerateOutputFunction · 0.85

Calls 2

AppendPropertyMethod · 0.80
SetPropertyMethod · 0.80

Tested by

no test coverage detected