aboutsummaryrefslogtreecommitdiff
path: root/build2/b-options.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-10-25 09:38:40 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-10-25 09:38:40 +0200
commit73fd1a275b7ed039ef3ca18a3706692e9e95177a (patch)
tree1565fca68586c4c23ac6ceedc507f8aed93e7d13 /build2/b-options.hxx
parentaca0c7906724b2c0b648c06604e60fc3164e6f6a (diff)
Add --silent, remap verbosity 0 to 1 while building modules unless silent
Failed that, we may have long periods of seemingly nothing happening (e.g., during implicit bdep sync) while we quietly update the module, which may look like things have hung up.
Diffstat (limited to 'build2/b-options.hxx')
-rw-r--r--build2/b-options.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/build2/b-options.hxx b/build2/b-options.hxx
index 8fea395..4b1852b 100644
--- a/build2/b-options.hxx
+++ b/build2/b-options.hxx
@@ -439,6 +439,9 @@ namespace build2
const bool&
quiet () const;
+ const bool&
+ silent () const;
+
const uint16_t&
verbose () const;
@@ -575,6 +578,7 @@ namespace build2
bool v_;
bool V_;
bool quiet_;
+ bool silent_;
uint16_t verbose_;
bool verbose_specified_;
bool stat_;