diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/nbblib/bs.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nbblib/bs.py b/src/nbblib/bs.py index c0a8060..e794037 100644 --- a/src/nbblib/bs.py +++ b/src/nbblib/bs.py @@ -137,3 +137,14 @@ class SconsSourceTree(BSSourceTree): def _get_tree_root(self): return self.__tree_root + def init(self): pass + def configure(self): pass + + def build(self): + progutils.prog_run(["scons"], + self.context) + + def install(self): + progutils.prog_run(["scons", "install"], + self.context) + |
