Adds a configuration to the project. Args: name: Configuration name.
(self, name)
| 69 | self.configurations = {} |
| 70 | |
| 71 | def AddConfig(self, name): |
| 72 | """Adds a configuration to the project. |
| 73 | |
| 74 | Args: |
| 75 | name: Configuration name. |
| 76 | """ |
| 77 | self.configurations[name] = ["Configuration", {"Name": name}] |
| 78 | |
| 79 | def AddDebugSettings( |
| 80 | self, config_name, command, environment={}, working_directory="" |