From 00df206af5c80aba31bf7d180bdf03d617071e94 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 8 May 2023 10:43:40 +0200 Subject: Add support for dumping build system state in JSON format (GH issue #182) Specifically: 1. New --dump-format option. Valid values are `buildfile` and `json-v0.1`. 2. The --dump option now recognizes two additional values: `match-pre` and `match-post` to dump the state of pre/post-operations. The `match` value now only triggers dumping of the main operation. --- libbuild2/b-options.hxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libbuild2/b-options.hxx') diff --git a/libbuild2/b-options.hxx b/libbuild2/b-options.hxx index 9afef25..37239ce 100644 --- a/libbuild2/b-options.hxx +++ b/libbuild2/b-options.hxx @@ -171,6 +171,12 @@ namespace build2 bool dump_specified () const; + const string& + dump_format () const; + + bool + dump_format_specified () const; + const dir_paths& dump_scope () const; @@ -305,6 +311,8 @@ namespace build2 bool no_mtime_check_; strings dump_; bool dump_specified_; + string dump_format_; + bool dump_format_specified_; dir_paths dump_scope_; bool dump_scope_specified_; vector>> dump_target_; -- cgit v1.1