blob: 0f4084f823f2fbf63900e6d66e9d97aa9bb4cb9e (
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
|
// file : bpkg/pkg-configure-options.cli
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
include <bpkg/configuration-options.cli>;
"\section=1"
"\name=bpkg-pkg-configure"
"\summary=configure package"
/*
"\h{SYNOPSIS}
bpkg pkg-configure <pkg> [<conf-vars>]"
"\h{DESCRIPTION}
The \cb{pkg-configure} command configures the output directory for
the previously unpacked (\cb{pkg-unpack}) package. The package
inherits the common \cb{build2} configuration values that were
specified when creating the \cb{bpkg} configuration (\cb{cfg-create}).
Additional, package-specific configuration variables can be specified
after the package name."
*/
namespace bpkg
{
class pkg_configure_options: configuration_options
{
};
}
|