blob: bbaccdc06f9e72152e6295dcfb9c875e26b9dd10 (
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
|
// file : build/config/module.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/config/module>
#include <build/path>
#include <build/scope>
#include <build/diagnostics>
using namespace std;
namespace build
{
namespace config
{
static bool
trigger (scope&, const path& p)
{
tracer trace ("config::trigger");
level4 ([&]{trace << "intercepted sourcing of " << p;});
return false;
}
void
load (scope& root, scope& base, const location& l)
{
tracer trace ("config::load");
if (&root != &base)
fail (l) << "config module must be loaded in project root scope";
//@@ TODO: avoid multiple loads (generally, for modules).
//
level4 ([&]{trace << "for " << root.path () << '/';});
// Register the build/config.build loading trigger.
//
root.triggers[path ("build/config.build")] = &trigger;
}
}
}
|