From f599f30ee51c8a6f796d5b9a35e8e17ee54333ee Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 7 Mar 2019 09:03:33 +0200 Subject: Add support for alternative build file/directory naming scheme Specifically, the bdep-new --type|-t now has the new 'alt-naming' sub-option that can be used to create projects with the alternative naming. --- bdep/new.cli | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'bdep/new.cli') diff --git a/bdep/new.cli b/bdep/new.cli index 67a3ed1..c7e7fcb 100644 --- a/bdep/new.cli +++ b/bdep/new.cli @@ -78,6 +78,8 @@ namespace bdep \cb{no-tests} \- Don't add support for functional/integration testing. \cb{unit-tests} \- Add support for unit testing. + + \cb{alt-naming} \- Use the alternative build file/directory naming scheme. | \li|\cb{lib} @@ -88,6 +90,8 @@ namespace bdep \cb{no-tests} \- Don't add support for functional/integration testing. \cb{unit-tests} \- Add support for unit testing. + + \cb{alt-naming} \- Use the alternative build file/directory naming scheme. | \li|\cb{bare} @@ -95,6 +99,8 @@ namespace bdep A project without any source code. Recognized bare project options: \cb{no-tests} \- Don't add support for testing. + + \cb{alt-naming} \- Use the alternative build file/directory naming scheme. | \li|\cb{empty} @@ -149,17 +155,20 @@ namespace bdep { bool no-tests; bool unit-tests; + bool alt-naming; }; class cmd_new_lib_options { bool no-tests; bool unit-tests; + bool alt-naming; }; class cmd_new_bare_options { bool no-tests; + bool alt-naming; }; class cmd_new_empty_options -- cgit v1.1