From e86333fa8790f624d82ecea2a8da40f85a1d3630 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 26 Apr 2018 09:48:58 +0200 Subject: Add support for forwarded configurations --- bdep/project.cli | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'bdep/project.cli') diff --git a/bdep/project.cli b/bdep/project.cli index 15faea8..137c77d 100644 --- a/bdep/project.cli +++ b/bdep/project.cli @@ -8,6 +8,31 @@ include ; namespace bdep { + // Common options for commands that add/create configurations. + // + class configuration_add_options + { + bool --default + { + "Make the added or created configuration the default." + } + + bool --no-default + { + "Don't make the first added or created configuration then default." + } + + bool --forward + { + "Make the added or created configuration forwarded." + } + + bool --no-forward + { + "Don't make the added or created configuration forwarded." + } + }; + // Common options for commands that accept --config-id and @. // class configuration_name_options: common_options -- cgit v1.1