aboutsummaryrefslogtreecommitdiff
path: root/bdep/new.cli
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/new.cli')
-rw-r--r--bdep/new.cli12
1 files changed, 9 insertions, 3 deletions
diff --git a/bdep/new.cli b/bdep/new.cli
index d7e3ed0..688f14c 100644
--- a/bdep/new.cli
+++ b/bdep/new.cli
@@ -76,6 +76,8 @@ namespace bdep
project options:
\cb{no-tests} \- Don't add support for functional/integration testing.
+
+ \cb{unit-tests} \- Add support for unit testing.
|
\li|\cb{lib}
@@ -84,14 +86,16 @@ namespace bdep
options:
\cb{no-tests} \- Don't add support for functional/integration testing.
- |
+
+ \cb{unit-tests} \- Add support for unit testing.
+ |
\li|\cb{bare}
A project without any source code. Recognized bare project options:
- \cb{no-tests} \- Don't add support for functional/integration testing.
- |
+ \cb{no-tests} \- Don't add support for testing.
+ |
\li|\cb{empty}
@@ -142,11 +146,13 @@ namespace bdep
class cmd_new_exe_options
{
bool no-tests;
+ bool unit-tests;
};
class cmd_new_lib_options
{
bool no-tests;
+ bool unit-tests;
};
class cmd_new_bare_options