blob: 12b94a810a960a4c3cd0f89a10585337ccd54e2a (
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
|
// file : libbuild2/prerequisite-key.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LIBBUILD2_PREREQUISITE_KEY_HXX
#define LIBBUILD2_PREREQUISITE_KEY_HXX
#include <libbuild2/types.hxx>
#include <libbuild2/forward.hxx>
#include <libbuild2/utility.hxx>
#include <libbuild2/target-key.hxx>
#include <libbuild2/target-type.hxx>
#include <libbuild2/export.hxx>
namespace build2
{
// Light-weight (by being shallow-pointing) prerequisite key, similar
// to (and based on) target key.
//
// Note that unlike prerequisite, the key is not (necessarily) owned by a
// target. So for the key we instead have the base scope of the target that
// (would) own it. Note that we assume keys to be ephemeral enough for the
// base scope to remain unchanged.
//
class prerequisite_key
{
public:
using scope_type = build2::scope;
const optional<project_name>& proj;
target_key tk; // The .dir and .out members can be relative.
const scope_type* scope; // Can be NULL if tk.dir is absolute.
template <typename T>
bool is_a () const {return tk.is_a<T> ();}
bool is_a (const target_type& tt) const {return tk.is_a (tt);}
};
LIBBUILD2_SYMEXPORT ostream&
operator<< (ostream&, const prerequisite_key&);
}
#endif // LIBBUILD2_PREREQUISITE_KEY_HXX
|