aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/algorithm.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2024-02-13 13:00:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2024-02-13 13:00:09 +0200
commit3d39584285e4b39e7290bea9b2e4006cd1cf8a10 (patch)
treeb9c1099f1ae4b93e85263821a3d28a29f39cbad0 /libbuild2/algorithm.hxx
parent8a23835baa00f0079dbcd259c04ffeb87a764568 (diff)
Add ability to omit matching in inject_fsdir()
Diffstat (limited to 'libbuild2/algorithm.hxx')
-rw-r--r--libbuild2/algorithm.hxx13
1 files changed, 10 insertions, 3 deletions
diff --git a/libbuild2/algorithm.hxx b/libbuild2/algorithm.hxx
index dd5d367..64660a9 100644
--- a/libbuild2/algorithm.hxx
+++ b/libbuild2/algorithm.hxx
@@ -650,8 +650,12 @@ namespace build2
// src tree or is outside of any project (say, for example, an installation
// directory). If the parent argument is true, then inject the parent
// directory of a target that is itself a directory (name is empty). Match
- // and return the injected target or NULL. Normally this function is called
- // from the rule's apply() function.
+ // unless match is false and return the injected target or NULL. Normally
+ // this function is called from the rule's apply() function.
+ //
+ // The match=false semantics is useful when you wish to first collect all
+ // the prerequisites targets and then match them all as a separate step, for
+ // example, with match_members().
//
// As an extension, unless prereq is false, this function will also search
// for an existing fsdir{} prerequisite for the directory and if one exists,
@@ -659,7 +663,10 @@ namespace build2
// example, to place output into an otherwise non-existent directory.
//
LIBBUILD2_SYMEXPORT const fsdir*
- inject_fsdir (action, target&, bool prereq = true, bool parent = true);
+ inject_fsdir (action, target&,
+ bool match = true,
+ bool prereq = true,
+ bool parent = true);
// As above, but match the injected fsdir{} target directly (that is,
// without incrementing the dependency counts).