blob: 0132b44f95122c4fb0a7ad5c54808b477b92a3bc (
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
|
// file : libbuild2/cli/rule.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LIBBUILD2_CLI_RULE_HXX
#define LIBBUILD2_CLI_RULE_HXX
#include <libbuild2/types.hxx>
#include <libbuild2/utility.hxx>
#include <libbuild2/rule.hxx>
#include <libbuild2/cli/export.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 LIBBUILD2_CLI_SYMEXPORT compile_rule: public simple_rule,
private virtual data
{
public:
compile_rule (data&& d): data (move (d)) {}
virtual bool
match (action, target&) const override;
virtual recipe
apply (action, target&) const override;
target_state
perform_update (action, const target&) const;
};
}
}
#endif // LIBBUILD2_CLI_RULE_HXX
|