diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-26 12:06:03 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-28 15:01:48 +0300 |
commit | ac87e3827b214c0ba1bd1c17a2d8a18026637d3f (patch) | |
tree | 8a750721a2537f9762b9dda4e00951b61ee1354f /tests/libbuild2 | |
parent | f7adb1ce7a13753a6acf5c9eeb9577ecdada630c (diff) |
Move cxx build system module to separate library
Diffstat (limited to 'tests/libbuild2')
-rw-r--r-- | tests/libbuild2/buildfile | 2 | ||||
-rw-r--r-- | tests/libbuild2/driver.cxx | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/libbuild2/buildfile b/tests/libbuild2/buildfile index 1d7faf7..f1104d2 100644 --- a/tests/libbuild2/buildfile +++ b/tests/libbuild2/buildfile @@ -4,7 +4,7 @@ import libs = build2%lib{build2} -for m: bash bin c cc in version +for m: bash bin c cc cxx in version import libs += build2%lib{build2-$m} exe{driver}: {hxx cxx}{*} $libs testscript diff --git a/tests/libbuild2/driver.cxx b/tests/libbuild2/driver.cxx index e17cdc5..a14d145 100644 --- a/tests/libbuild2/driver.cxx +++ b/tests/libbuild2/driver.cxx @@ -12,6 +12,7 @@ #include <libbuild2/bin/init.hxx> #include <libbuild2/c/init.hxx> #include <libbuild2/cc/init.hxx> +#include <libbuild2/cxx/init.hxx> #include <libbuild2/bash/init.hxx> #include <libbuild2/version/init.hxx> @@ -28,6 +29,7 @@ main (int, char* argv[]) bin::build2_bin_load (); cc::build2_cc_load (); c::build2_c_load (); + cxx::build2_cxx_load (); version::build2_version_load (); in::build2_in_load (); bash::build2_bash_load (); |