(self)
| 412 | return result |
| 413 | |
| 414 | def do_build(self): |
| 415 | self.prepare_build() |
| 416 | command = 'scons' |
| 417 | |
| 418 | if not self.check_path(): |
| 419 | return |
| 420 | |
| 421 | bsp = self.BSPRoot.get_path() |
| 422 | os.chdir(bsp) |
| 423 | |
| 424 | self.output.delete(1.0, END) |
| 425 | self.output.insert(END, 'building project...\n') |
| 426 | ExecCmd(command) |
| 427 | |
| 428 | def do_clean(self): |
| 429 | self.prepare_build() |
nothing calls this directly
no test coverage detected