Sets the build setting for key to value in all child XCBuildConfiguration objects.
(self, key, value)
| 1768 | return value |
| 1769 | |
| 1770 | def SetBuildSetting(self, key, value): |
| 1771 | """Sets the build setting for key to value in all child |
| 1772 | XCBuildConfiguration objects. |
| 1773 | """ |
| 1774 | |
| 1775 | for configuration in self._properties["buildConfigurations"]: |
| 1776 | configuration.SetBuildSetting(key, value) |
| 1777 | |
| 1778 | def AppendBuildSetting(self, key, value): |
| 1779 | """Appends value to the build setting for key, which is treated as a list, |
nothing calls this directly
no test coverage detected