diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-16 14:32:42 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-16 14:32:42 +0200 |
commit | 81366923ed240fcd0a134e690453f3364866096d (patch) | |
tree | 1e9218980d26e20f5b3bd8aa60d526a1c6b33a25 | |
parent | 68156ea399c4cc547a70111630b57308c36b6bd1 (diff) |
Add missing cli-generated files to distribution
-rw-r--r-- | bpkg/buildfile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/bpkg/buildfile b/bpkg/buildfile index f98a787..2ed3035 100644 --- a/bpkg/buildfile +++ b/bpkg/buildfile @@ -68,6 +68,12 @@ if! $cli.loaded cli{*}: extension = cli } +# Include generated cli files into the distribution. +# +hxx{*-options}: dist = true +ixx{*-options}: dist = true +cxx{*-options}: dist = true + {hxx ixx cxx}{common-options}: cli{common} {hxx ixx cxx}{configuration-options}: cli{configuration} {hxx ixx cxx}{bpkg-options}: cli{bpkg} @@ -108,6 +114,7 @@ if! $cli.loaded # Help topics. # {hxx cxx}{repository-signing}: cli{repository-signing} +{hxx cxx}{repository-signing}: dist = true # Option length must be the same to get commands/topics/options aligned. # @@ -125,9 +132,3 @@ cli.options += --long-usage # All other pages -- long usage. # Avoid generating CLI runtime and empty inline file for help topics. # cli.cxx{repository-signing}: cli.options += --suppress-cli --suppress-inline - -# Include generated cli files into the distribution. -# -hxx{*-options}: dist = true -ixx{*-options}: dist = true -cxx{*-options}: dist = true |