aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/module.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cc/module.hxx')
-rw-r--r--build2/cc/module.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/build2/cc/module.hxx b/build2/cc/module.hxx
index db17998..a6a1115 100644
--- a/build2/cc/module.hxx
+++ b/build2/cc/module.hxx
@@ -52,7 +52,10 @@ namespace build2
};
class module: public module_base, protected virtual common,
- link, compile, install
+ link,
+ compile,
+ file_install,
+ alias_install
{
public:
explicit
@@ -60,7 +63,8 @@ namespace build2
: common (move (d)),
link (move (d)),
compile (move (d)),
- install (move (d), *this) {}
+ file_install (move (d), *this),
+ alias_install (move (d), *this) {}
void
init (scope&, const location&, const variable_map&);