summaryrefslogtreecommitdiff
path: root/cli/buildfile
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-03-05 17:58:54 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-03-05 22:52:10 +0300
commit7108b06ec9a225f3b379a11b7c9217ff49f0ada4 (patch)
treed06487e4f06b26e6cfccb12f74745f30995ef9ee /cli/buildfile
parent9f0c3c880274eb07a25fee2b43e7565c3889ec1d (diff)
Align with latest bdep-new
Diffstat (limited to 'cli/buildfile')
-rw-r--r--cli/buildfile25
1 files changed, 14 insertions, 11 deletions
diff --git a/cli/buildfile b/cli/buildfile
index 24e5853..4b35f5f 100644
--- a/cli/buildfile
+++ b/cli/buildfile
@@ -22,15 +22,18 @@ if $cli.configured
--guard-prefix CLI --generate-file-scanner --generate-specifier \
--generate-modifier --reserved-name stdout
- # Include the generated cli files into the distribution and don't remove
- # them when cleaning in src (so that clean results in a state identical to
- # distributed).
- #
- cli.cxx{*}: dist = true
- cli.cxx{*}: clean = ($src_root != $out_root)
-
- # We keep the generated code in the repository so copy it back to src
- # in case of a forwarded configuration.
- #
- cli.cxx{*}: backlink = overwrite
+ cli.cxx{*}:
+ {
+ # Include the generated cli files into the distribution and don't remove
+ # them when cleaning in src (so that clean results in a state identical to
+ # distributed).
+ #
+ dist = true
+ clean = ($src_root != $out_root)
+
+ # We keep the generated code in the repository so copy it back to src
+ # in case of a forwarded configuration.
+ #
+ backlink = overwrite
+ }
}