aboutsummaryrefslogtreecommitdiff
path: root/build/cli/target
blob: d73366834c914c62c181a9817552c1fe55685a76 (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
// file      : build/cli/target -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD_CLI_TARGET
#define BUILD_CLI_TARGET

#include <build/target>

#include <build/cxx/target>

namespace build
{
  namespace cli
  {
    class cli: public file
    {
    public:
      using file::file;

    public:
      virtual const target_type& type () const {return static_type;}
      static const target_type static_type;
    };

    class cli_cxx: public mtime_target
    {
    public:
      using mtime_target::mtime_target;

      target* m[3] {nullptr, nullptr, nullptr};

      cxx::hxx* h () const {return static_cast<cxx::hxx*> (m[0]);}
      cxx::cxx* c () const {return static_cast<cxx::cxx*> (m[1]);}
      cxx::ixx* i () const {return static_cast<cxx::ixx*> (m[2]);}

      void h (cxx::hxx& t) {m[0] = &t;}
      void c (cxx::cxx& t) {m[1] = &t;}
      void i (cxx::ixx& t) {m[2] = &t;}

      virtual group_view
      group_members (action) const;

      virtual timestamp
      load_mtime () const;

    public:
      virtual const target_type& type () const {return static_type;}
      static const target_type static_type;
    };
  }
}

#endif // BUILD_CLI_TARGET