aboutsummaryrefslogtreecommitdiff
path: root/bdep/new.cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-10-29 10:28:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-10-29 10:28:55 +0200
commit381ab3f108b8878c193a5d7dd06a96193daf3f25 (patch)
tree9708b93ad126bcc09368a58fbe177ee2af9f1963 /bdep/new.cli
parent323389d5cb200288d4f743f3d05963f5ef4d3aed (diff)
Add no-install project type sub-option
In particular, this should be useful when creating *-tests packages.
Diffstat (limited to 'bdep/new.cli')
-rw-r--r--bdep/new.cli15
1 files changed, 15 insertions, 0 deletions
diff --git a/bdep/new.cli b/bdep/new.cli
index bcae7aa..e338683 100644
--- a/bdep/new.cli
+++ b/bdep/new.cli
@@ -150,6 +150,10 @@ namespace bdep
Add support for unit testing.|
+ \li|\n\ \ \ \cb{no-install}
+
+ Don't add support for installing.|
+
\li|\n\ \ \ \c{\b{license=}\i{name}}|
\li|\ \ \ \cb{no-readme}|
@@ -173,6 +177,10 @@ namespace bdep
Add support for unit testing.|
+ \li|\n\ \ \ \cb{no-install}
+
+ Don't add support for installing.|
+
\li|\n\ \ \ \cb{no-version}
Don't add support for generating the version header.|
@@ -196,6 +204,10 @@ namespace bdep
Don't add support for testing.|
+ \li|\n\ \ \ \cb{no-install}
+
+ Don't add support for installing.|
+
\li|\n\ \ \ \c{\b{license=}\i{name}}|
\li|\ \ \ \cb{no-readme}|
@@ -357,6 +369,7 @@ namespace bdep
{
bool no-tests;
bool unit-tests;
+ bool no-install;
string license = "proprietary";
bool no-readme;
bool alt-naming;
@@ -366,6 +379,7 @@ namespace bdep
{
bool no-tests;
bool unit-tests;
+ bool no-install;
bool no-version;
string license = "proprietary";
bool no-readme;
@@ -375,6 +389,7 @@ namespace bdep
class cmd_new_bare_options
{
bool no-tests;
+ bool no-install;
string license = "proprietary";
bool no-readme;
bool alt-naming;