From fa1fca26c52df81d7de43e4dcfcbf6fba55c35c4 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 1 Sep 2016 17:23:52 +0200 Subject: Only set cli.options if cli is configured --- mod/buildfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'mod/buildfile') diff --git a/mod/buildfile b/mod/buildfile index 799ed5d..6ec69fb 100644 --- a/mod/buildfile +++ b/mod/buildfile @@ -51,14 +51,17 @@ mod{brep}: \ # {hxx ixx cxx}{options}: cli{options} -# Set option prefix to the empty value to handle all unknown request parameters -# uniformly with a single catch block. -# -cli.options += --std c++11 -I $src_root --include-with-brackets \ +if $cli.configured +{ + # Set option prefix to the empty value to handle all unknown request + # parameters uniformly with a single catch block. + # + cli.options += --std c++11 -I $src_root --include-with-brackets \ --include-prefix mod --guard-prefix MOD \ --cxx-prologue "#include " \ --cli-namespace brep::cli --generate-file-scanner --suppress-usage \ --generate-modifier --generate-description --option-prefix "" +} # Include generated cli files into the distribution. # -- cgit v1.1