blob: fc89f440b1c41c67dadd8eac6171587a9663b196 (
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
|
// file : build/name -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_NAME
#define BUILD_NAME
#include <string>
#include <vector>
#include <iosfwd>
#include <utility> // move()
#include <build/path>
namespace build
{
// A name is what we operate on by default. Depending on the context,
// it can be interpreted as a target or prerequisite name. A name
// without a type and directory can be used to represent any text.
// A name with directory and empty value represents a directory.
//
// If pair is true, then this name and the next in the list form
// a pair.
//
struct name
{
explicit
name (std::string v): value (std::move (v)) {}
explicit
name (path d): dir (std::move (d)) {}
name (std::string t, path d, std::string v)
: type (std::move (t)), dir (std::move (d)), value (std::move (v)) {}
std::string type;
path dir;
std::string value;
bool pair {false};
};
typedef std::vector<name> names;
std::ostream&
operator<< (std::ostream&, const name&);
std::ostream&
operator<< (std::ostream&, const names&);
}
#endif // BUILD_NAME
|