EDIT: solved it right after posting. I forgot the (public_name ...)
field in the dune
file.
Hi, when I run dune build @doc
locally I get a empty index, as can be seen here: https://yawaramin.github.io/ocaml-decimal/api/decimal/index.html
The package decimal
has the following layout:
decimal.opam
dune-project
(lang dune 2.7)
...
(package
(name decimal)
...)
lib/
calc.ml
decimal.ml
decimal.mli
dune
(library
(name decimal)
(libraries str zarith))
Can anyone say what might be going wrong here?