(self)
| 426 | ExecCmd(command) |
| 427 | |
| 428 | def do_clean(self): |
| 429 | self.prepare_build() |
| 430 | command = 'scons -c' |
| 431 | |
| 432 | if not self.check_path(): |
| 433 | return |
| 434 | |
| 435 | bsp = self.BSPRoot.get_path() |
| 436 | os.chdir(bsp) |
| 437 | |
| 438 | self.output.delete(1.0, END) |
| 439 | self.output.insert(END, 'clean project...\n') |
| 440 | ExecCmd(command) |
| 441 | |
| 442 | def do_make_project(self): |
| 443 | ide = self.ide.get() |
nothing calls this directly
no test coverage detected