aboutsummaryrefslogtreecommitdiff
path: root/bpkg/cfg-create-options.cli
blob: 4ff09736185581c8eba2dc3fa123384382a112c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// file      : bpkg/cfg-create-options.cli
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

include <bpkg/common-options.cli>;

"\section=1"
"\name=bpkg-cfg-create"
"\summary=create configuration"

/*
"\h{SYNOPSIS}

bpkg cfg-create [<options>] [(<module>|<conf-var>)...]"

"\h{DESCRIPTION}

The \cb{cfg-create} command creates a new \cb{bpkg} configuration with
the specified \cb{build2} modules and configuration variables. Unless
the \cb{--wipe} option is specified, \cb{cfg-create} expects the
configuration directory to not exist (in which case it will be created)
or to be empty."
*/

namespace bpkg
{
  class cfg_create_options: common_options
  {
    dir_path --directory|-d (".")
    {
      "<dir>",
      "Create configuration in <dir> rather than in the current working
       directory."
    }

    bool --wipe
    {
      "Wipe the configuration directory clean before creating the new
       configuration."
    }
  };
}