aboutsummaryrefslogtreecommitdiff
path: root/build/spec
blob: fda4186f040c26636e50c17e4ec6afaa80f7746f (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
55
56
57
58
59
60
// file      : build/spec -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD_SPEC
#define BUILD_SPEC

#include <string>
#include <vector>
#include <iosfwd>
#include <utility> // move()

#include <build/path>
#include <build/name>

namespace build
{
  struct targetspec
  {
    explicit
    targetspec (name t): target (std::move (t)) {}
    targetspec (path sb, name t)
        : src_base (std::move (sb)), target (std::move (t)) {}

    path src_base;
    name target;
  };

  struct opspec: std::vector<targetspec>
  {
    opspec () = default;
    opspec (std::string o): operation (std::move (o)) {}

    std::string operation;
  };

  struct metaopspec: std::vector<opspec>
  {
    metaopspec () = default;
    metaopspec (std::string mo): meta_operation (std::move (mo)) {}

    std::string meta_operation;
  };

  typedef std::vector<metaopspec> buildspec;

  std::ostream&
  operator<< (std::ostream&, const targetspec&);

  std::ostream&
  operator<< (std::ostream&, const opspec&);

  std::ostream&
  operator<< (std::ostream&, const metaopspec&);

  std::ostream&
  operator<< (std::ostream&, const buildspec&);
}

#endif // BUILD_SPEC