From d77ca8720df495017139a24a59c502f53c07df9f Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 22 Apr 2021 21:57:13 +0300 Subject: Add support for associated configurations --- bpkg/cfg-add.hxx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 bpkg/cfg-add.hxx (limited to 'bpkg/cfg-add.hxx') diff --git a/bpkg/cfg-add.hxx b/bpkg/cfg-add.hxx new file mode 100644 index 0000000..2059963 --- /dev/null +++ b/bpkg/cfg-add.hxx @@ -0,0 +1,40 @@ +// file : bpkg/cfg-add.hxx -*- C++ -*- +// license : MIT; see accompanying LICENSE file + +#ifndef BPKG_CFG_ADD_HXX +#define BPKG_CFG_ADD_HXX + +#include +#include // configuration +#include + +#include + +namespace bpkg +{ + int + cfg_add (const cfg_add_options&, cli::scanner& args); + + // Associate the configuration specified as the directory path with the + // current configuration, attach the associated configuration database, and + // return the association. Note that it also establishes an implicit + // association of the current configuration with the associated one. + // + // The specified configuration path must be absolute and normalized. If the + // relative argument is true, then rebase this path relative to the current + // configuration directory path and fail if that's not possible (different + // drive on Windows, etc). + // + // If the current configuration database has its explicit associations + // pre-attached, then also pre-attach explicit associations of the newly + // associated database. + // + shared_ptr + cfg_add (database&, + const dir_path&, + bool relative, + optional name, + bool sys_rep = false); +} + +#endif // BPKG_CFG_ADD_HXX -- cgit v1.1