blob: 564fc11d9ab3e54026e39c1000b8234b7f791a06 (
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
|
// file : libbuild2/file.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <libbuild2/export.hxx>
namespace build2
{
inline bool
source_once (scope& root, scope& base, const path& bf)
{
return source_once (root, base, bf, base);
}
LIBBUILD2_SYMEXPORT const target*
import (context&, const prerequisite_key&, bool existing);
inline const target&
import (context& ctx, const prerequisite_key& pk)
{
assert (ctx.phase == run_phase::match);
return *import (ctx, pk, false);
}
inline const target*
import_existing (context& ctx, const prerequisite_key& pk)
{
assert (ctx.phase == run_phase::match || ctx.phase == run_phase::execute);
return import (ctx, pk, true);
}
}
|