generating OCaml documentation with dune

Viewed 138

I'm in an internal package of my project and I ran dune build @doc. It does not complain and runs to completion. I then check the /_build/default directory and no _doc directory exists.

Am I missing something?

1 Answers

You should simply be able to generate docs by running dune build @doc if you have foo.ml, foo.opam, and a dune file containing simple contents. For example,

(library
   (name foo))

To answer the question, the package name should be related to the library name or public name (if added as a stanza to the dune file).

Related