diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-01 16:17:09 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-01 16:41:08 +0300 |
commit | 930ae81f85e5ee5ac37311f5e9c89000fbcb59a6 (patch) | |
tree | d14c8a341f16fb6c485bfa4212bc1002fe52ed6b /tests/libbuild2/driver.cxx | |
parent | da9cbf29c403d27c2940f9b31199c4648f8ae4a1 (diff) |
Move bash build system module to separate library
Diffstat (limited to 'tests/libbuild2/driver.cxx')
-rw-r--r-- | tests/libbuild2/driver.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/libbuild2/driver.cxx b/tests/libbuild2/driver.cxx index 544d43e..20c0ec2 100644 --- a/tests/libbuild2/driver.cxx +++ b/tests/libbuild2/driver.cxx @@ -9,6 +9,7 @@ #include <libbuild2/scheduler.hxx> #include <libbuild2/in/init.hxx> +#include <libbuild2/bash/init.hxx> #include <libbuild2/version/init.hxx> using namespace build2; @@ -21,8 +22,9 @@ main (int, char* argv[]) init_diag (1); init (argv[0]); - version::build2_version_load (); + bash::build2_bash_load (); in::build2_in_load (); + version::build2_version_load (); sched.startup (1); // Serial execution. reset (strings ()); // No command line variables. |