aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/cli/module.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2023-04-13 13:55:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2023-04-13 13:55:00 +0200
commit894813b993963de006d0a8aa7480b0403daaa87a (patch)
treebfc4f5a57da17089f93da5035e1d156b5adebd54 /libbuild2/cli/module.hxx
parente9a3804c2ea5972dd84a7d4759d4ea965c2490fb (diff)
Move cli module to libbuild2-cli library
This is a temporary measure (until we unboundle this module) needed for in-process configure support in bpkg.
Diffstat (limited to 'libbuild2/cli/module.hxx')
-rw-r--r--libbuild2/cli/module.hxx30
1 files changed, 30 insertions, 0 deletions
diff --git a/libbuild2/cli/module.hxx b/libbuild2/cli/module.hxx
new file mode 100644
index 0000000..ba10540
--- /dev/null
+++ b/libbuild2/cli/module.hxx
@@ -0,0 +1,30 @@
+// file : libbuild2/cli/module.hxx -*- C++ -*-
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBUILD2_CLI_MODULE_HXX
+#define LIBBUILD2_CLI_MODULE_HXX
+
+#include <libbuild2/types.hxx>
+#include <libbuild2/utility.hxx>
+
+#include <libbuild2/module.hxx>
+
+#include <libbuild2/cli/rule.hxx>
+
+namespace build2
+{
+ namespace cli
+ {
+ class module: public build2::module,
+ public virtual data,
+ public compile_rule
+ {
+ public:
+ explicit
+ module (data&& d)
+ : data (move (d)), compile_rule (move (d)) {}
+ };
+ }
+}
+
+#endif // LIBBUILD2_CLI_MODULE_HXX