// file : bdep/config.cli // copyright : Copyright (c) 2014-2017 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; "\section=1" "\name=bdep-config" "\summary=manage project build configurations" namespace bdep { { " ", "\h|SYNOPSIS| \c{\b{bdep config add} \ \ \ [] [] [\b{@}] \n \b{bdep config create} [] [] [\b{@}] []\n \b{bdep config remove} [] [] ... | \b{--all}|\b{-a}\n \b{bdep config rename} [] [] \n \b{bdep config set} \ \ \ [] [] \b{--}[\b{no-}]\b{default}} \c{ = \b{@} | \b{--config}|\b{-c} \n = \b{--directory}|\b{-d} \n = ( | )...} \h|DESCRIPTION| The \cb{config} command... Unless the \cb{--no-default} option is specified, the first added or created build configuration is designated as the default configuration. Several \cb{bdep} commands use such a configuration by default if no configuration was specified explicitly (see \l{bdep-projects-configs(1)} for details). To make a subsequently added configuration the default use the \cb{--default} option. " } // Note that not all project/configuration options are valid for all // subcommands. // class cmd_config_options: project_options { "\h|CONFIG 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." } }; }