// file : bpkg/build-options.cli // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; /* "\section=1" "\name=bpkg-build" "\h{SYNOPSIS} bpkg build [] ([/]||)..." "\h{DESCRIPTION} The \cb{build} command builds one or more packages including all their prerequisites. Each package can be specified as just the name () with optional package version () in which case the package will be automatically fetched from one of the configuration's source repositories (see \cb{rep-add} and \cb{rep-fetch}). Alternatively, the package can be specified as either the path to the package source archive () or package source directory (). See \cb{pkg-fetch} and \cb{pkg-unpack} for more information on the semantics of specifying the package as an archive or directory. */ namespace bpkg { class build_options: configuration_options { bool --print-only|-p { "Print to \cb{STDOUT} what would be done without actually doing anything." }; }; }