diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-10-07 16:02:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-10-07 16:02:38 +0200 |
commit | f745d8ba2b7d6fd6a725af5c58cd5f057fca8191 (patch) | |
tree | 7f702750799e463a6bef132df89dc432ebd3eb59 /libbuild2/context.hxx | |
parent | 7ee735c0a99b29979594920262db13b4939b3c2c (diff) |
Allow forcing installation of exe{} prerequisites of file targets
This can be achieved with prerequisite-specific install=true, for example:
exe{foo}: exe{bar}: install = true # foo runs bar
Diffstat (limited to 'libbuild2/context.hxx')
-rw-r--r-- | libbuild2/context.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/context.hxx b/libbuild2/context.hxx index 7ac4af4..c4d85c9 100644 --- a/libbuild2/context.hxx +++ b/libbuild2/context.hxx @@ -460,7 +460,7 @@ namespace build2 // test) with a more natural-looking result. Note that currently we only // recognize the built-in clean variable (for other variables we will need // some kind of registration in an operation-to-variable map, probably in - // root scope). + // root scope). See also install::file_rule::filter(). // // To query this value in rule implementations use the include() helpers // from <libbuild2/prerequisites.hxx>. |