blob: aaf74ec698a510af0585289062dbf3d3aaed9e09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// file : libbuild2/config/functions.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <sstream>
#include <libbuild2/scope.hxx>
#include <libbuild2/function.hxx>
#include <libbuild2/variable.hxx>
#include <libbuild2/config/operation.hxx>
using namespace std;
namespace build2
{
namespace config
{
void
functions (function_map& m)
{
function_family f (m, "config");
// Return the configuration file contents as a string, similar to the
// config.config.save variable functionality.
//
// Note that this function can only be used during configure unless the
// config module creation was requested for other meta-operations with
// config.config.module=true in bootstrap.build.
//
f[".save"] = [] (const scope* s)
{
if (s == nullptr)
fail << "config.save() called out of scope" << endf;
s = s->root_scope ();
if (s == nullptr)
fail << "config.save() called out of project" << endf;
ostringstream os;
// Empty project set should is ok as long as inherit is false.
//
project_set ps;
save_config (*s,
os, path_name ("config.save()"),
false /* inherit */,
ps);
return os.str ();
};
}
}
}
|