aboutsummaryrefslogtreecommitdiff
path: root/build2/b-options
diff options
context:
space:
mode:
Diffstat (limited to 'build2/b-options')
-rw-r--r--build2/b-options12
1 files changed, 10 insertions, 2 deletions
diff --git a/build2/b-options b/build2/b-options
index 6a2088d..f05f483 100644
--- a/build2/b-options
+++ b/build2/b-options
@@ -402,7 +402,7 @@ namespace build2
V () const;
const bool&
- q () const;
+ quiet () const;
const uint16_t&
verbose () const;
@@ -410,6 +410,12 @@ namespace build2
bool
verbose_specified () const;
+ const size_t&
+ jobs () const;
+
+ bool
+ jobs_specified () const;
+
const bool&
no_column () const;
@@ -473,9 +479,11 @@ namespace build2
public:
bool v_;
bool V_;
- bool q_;
+ bool quiet_;
uint16_t verbose_;
bool verbose_specified_;
+ size_t jobs_;
+ bool jobs_specified_;
bool no_column_;
bool no_line_;
path buildfile_;