aboutsummaryrefslogtreecommitdiff
path: root/build/spec
blob: 9ca8c4df2540f5c3eb3c55c0743dde406bde66dd (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
// 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
  {
    targetspec (path sr, name t)
        : src_root (std::move (sr)), target (std::move (t)) {}

    path src_root;
    name target;  // target.dir is out_root.
  };

  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