(self)
| 397 | return command |
| 398 | |
| 399 | def check_path(self): |
| 400 | result = True |
| 401 | |
| 402 | if self.BSPRoot.get_path() == '': |
| 403 | result = False |
| 404 | |
| 405 | if self.RTTRoot.get_path() == '': |
| 406 | result = False |
| 407 | |
| 408 | if not result: |
| 409 | tkMessageBox.showinfo("RT-Thread SCons UI", |
| 410 | "Folder is empty, please choose correct directory.") |
| 411 | |
| 412 | return result |
| 413 | |
| 414 | def do_build(self): |
| 415 | self.prepare_build() |
no test coverage detected