aboutsummaryrefslogtreecommitdiff
path: root/build2/b.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-07-20 15:31:13 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-07-20 16:10:26 +0200
commitc1dc06dfd1d329f8c6499dbe2166725ab9c35e17 (patch)
tree97449ae7263490473a833944cfeb3d889a2f580d /build2/b.cxx
parentb4286df8c9bafdab1934cef99ccc0506ec4555e2 (diff)
Implement bash module
Diffstat (limited to 'build2/b.cxx')
-rw-r--r--build2/b.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/build2/b.cxx b/build2/b.cxx
index 977a76e..0f2a928 100644
--- a/build2/b.cxx
+++ b/build2/b.cxx
@@ -59,6 +59,8 @@ using namespace std;
#include <build2/cli/init.hxx>
+#include <build2/bash/init.hxx>
+
namespace build2
{
int
@@ -419,6 +421,8 @@ main (int argc, char* argv[])
bm["cli.config"] = mf {nullptr, &cli::config_init};
bm["cli"] = mf {nullptr, &cli::init};
+
+ bm["bash"] = mf {nullptr, &bash::init};
}
keep_going = !ops.serial_stop ();