aboutsummaryrefslogtreecommitdiff
path: root/build2/cli/rule.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cli/rule.hxx')
-rw-r--r--build2/cli/rule.hxx43
1 files changed, 0 insertions, 43 deletions
diff --git a/build2/cli/rule.hxx b/build2/cli/rule.hxx
deleted file mode 100644
index b3ecc2c..0000000
--- a/build2/cli/rule.hxx
+++ /dev/null
@@ -1,43 +0,0 @@
-// 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 simple_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