aboutsummaryrefslogtreecommitdiff
path: root/bdep/utility.txx
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/utility.txx')
-rw-r--r--bdep/utility.txx16
1 files changed, 16 insertions, 0 deletions
diff --git a/bdep/utility.txx b/bdep/utility.txx
index 100ee07..a7d060d 100644
--- a/bdep/utility.txx
+++ b/bdep/utility.txx
@@ -121,6 +121,14 @@ namespace bdep
ops.push_back ("--no-progress");
}
+ // Forward our --[no]diag-color options.
+ //
+ if (co.diag_color ())
+ ops.push_back ("--diag-color");
+
+ if (co.no_diag_color ())
+ ops.push_back ("--no-diag-color");
+
// Forward our --build* options.
//
if (co.build_specified ())
@@ -236,6 +244,14 @@ namespace bdep
ops.push_back ("--no-progress");
}
+ // Forward our --[no]diag-color options.
+ //
+ if (co.diag_color ())
+ ops.push_back ("--diag-color");
+
+ if (co.no_diag_color ())
+ ops.push_back ("--no-diag-color");
+
return process_start_callback (
[v] (const char* const args[], size_t n)
{