diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-12-03 09:47:05 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-12-03 09:47:05 +0200 |
commit | 82e9227262a41bfa740952659b3b91d2d99e984e (patch) | |
tree | b0ee458f8cb0fb28ac0aae9b1927331a1d80a94c /libbuild2/build/script/builtin-options.ixx | |
parent | d9745e79083e12a2c3eb129a20fc20be3607a4c3 (diff) |
Add depdb-dyndep --drop-cycles option
Diffstat (limited to 'libbuild2/build/script/builtin-options.ixx')
-rw-r--r-- | libbuild2/build/script/builtin-options.ixx | 18 |
1 files changed, 18 insertions, 0 deletions
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; + } } } } |