From 82e9227262a41bfa740952659b3b91d2d99e984e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 3 Dec 2021 09:47:05 +0200 Subject: Add depdb-dyndep --drop-cycles option --- libbuild2/build/script/builtin-options.ixx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'libbuild2/build/script/builtin-options.ixx') diff --git a/libbuild2/build/script/builtin-options.ixx b/libbuild2/build/script/builtin-options.ixx index c6266d0..075bad8 100644 --- a/libbuild2/build/script/builtin-options.ixx +++ b/libbuild2/build/script/builtin-options.ixx @@ -358,6 +358,24 @@ namespace build2 { this->cwd_specified_ = x; } + + inline const bool& depdb_dyndep_options:: + drop_cycles () const + { + return this->drop_cycles_; + } + + inline bool& depdb_dyndep_options:: + drop_cycles () + { + return this->drop_cycles_; + } + + inline void depdb_dyndep_options:: + drop_cycles (const bool& x) + { + this->drop_cycles_ = x; + } } } } -- cgit v1.1