From e58957d6491a08ec212958457c29a14eec787279 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 11 Mar 2016 16:24:37 +0200 Subject: Implement --config-{guess,sub} options --- build2/b-options.ixx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'build2/b-options.ixx') diff --git a/build2/b-options.ixx b/build2/b-options.ixx index fb7df02..ed538c9 100644 --- a/build2/b-options.ixx +++ b/build2/b-options.ixx @@ -240,6 +240,30 @@ namespace build2 return this->verbose_specified_; } + inline const path& options:: + config_guess () const + { + return this->config_guess_; + } + + inline bool options:: + config_guess_specified () const + { + return this->config_guess_specified_; + } + + inline const path& options:: + config_sub () const + { + return this->config_sub_; + } + + inline bool options:: + config_sub_specified () const + { + return this->config_sub_specified_; + } + inline const string& options:: pager () const { -- cgit v1.1