diff options
Diffstat (limited to 'build2/install/init.hxx')
-rw-r--r-- | build2/install/init.hxx | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/build2/install/init.hxx b/build2/install/init.hxx new file mode 100644 index 0000000..98b4205 --- /dev/null +++ b/build2/install/init.hxx @@ -0,0 +1,31 @@ +// file : build2/install/init.hxx -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BUILD2_INSTALL_INIT_HXX +#define BUILD2_INSTALL_INIT_HXX + +#include <build2/types.hxx> +#include <build2/utility.hxx> + +#include <build2/module.hxx> + +namespace build2 +{ + namespace install + { + void + boot (scope&, const location&, unique_ptr<module_base>&); + + bool + init (scope&, + scope&, + const location&, + unique_ptr<module_base>&, + bool, + bool, + const variable_map&); + } +} + +#endif // BUILD2_INSTALL_INIT_HXX |