digitalmars.D.learn - DUB and ddoc - howto?
- Martin Tschierschke (4/4) Jun 28 2019 A very simple question, is there an example how to generate
- Daniel Kozak (16/20) Jun 28 2019 Did you try dub build --help?
- Martin Tschierschke (3/4) Jun 28 2019 Oh, thank you! I just looked at dub --help | grep -i doc ... and
- Daniel Kozak (3/7) Jun 28 2019 But I am using this one: https://github.com/adamdruppe/adrdox
A very simple question, is there an example how to generate documentation with dub? (like dmd -D) My internet search was not successful.
Jun 28 2019
Did you try dub build --help?
-b --build=VALUE Specifies the type of build to perform. Note that
setting the DFLAGS environment variable will
override
the build type with custom flags.
Possible names:
debug (default), plain, release, release-debug,
release-nobounds, unittest, profile, profile-gc,
docs, ddox, cov, unittest-cov, syntax and custom
types
So I guess something like this could work:
dub build -b ddox
or
dub build -b docs
On Fri, Jun 28, 2019 at 2:45 PM Martin Tschierschke via Digitalmars-d-learn
<digitalmars-d-learn puremagic.com> wrote:
A very simple question, is there an example how to generate
documentation with dub?
(like dmd -D)
My internet search was not successful.
Jun 28 2019
On Friday, 28 June 2019 at 13:03:17 UTC, Daniel Kozak wrote:Did you try dub build --help?Oh, thank you! I just looked at dub --help | grep -i doc ... and several other places...
Jun 28 2019
But I am using this one: https://github.com/adamdruppe/adrdox On Fri, Jun 28, 2019 at 2:45 PM Martin Tschierschke via Digitalmars-d-learn <digitalmars-d-learn puremagic.com> wrote:A very simple question, is there an example how to generate documentation with dub? (like dmd -D) My internet search was not successful.
Jun 28 2019









Martin Tschierschke <mt smartdolphin.de> 