blob: 64f1614ed4b0b7c1b2f1d962107debfb033e0de2 (
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
|
// file : build2/cli/rule.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef BUILD2_CLI_RULE_HXX
#define BUILD2_CLI_RULE_HXX
#include <libbuild2/types.hxx>
#include <libbuild2/utility.hxx>
#include <libbuild2/rule.hxx>
namespace build2
{
namespace cli
{
// Cached data shared between rules and the module.
//
struct data
{
const exe& ctgt; // CLI compiler target.
const string& csum; // CLI compiler checksum.
};
// @@ Redo as two separate rules?
//
class compile_rule: public rule, virtual data
{
public:
compile_rule (data&& d): data (move (d)) {}
virtual bool
match (action, target&, const string&) const override;
virtual recipe
apply (action, target&) const override;
target_state
perform_update (action, const target&) const;
};
}
}
#endif // BUILD2_CLI_RULE_HXX
|