How to install
Install with opam
If seacoral is available in your opam repository, you can just call:
opam install seacoral
Build and install with dune
Checkout the sources of seacoral in a directory.
You need a switch with at least version 4.14.2 of OCaml:
opam switch create 4.14.2
Then, you need to install all the dependencies:
opam install --deps-only .
Finally, you can build the package and install it:
eval $(opam env)
dune build
dune install
Note that a Makefile is provided, it contains the following
targets:
build: build the codeinstall: install the generated filesbuild-deps: install opam dependenciessphinx: build sphinx documentation (from thesphinx/directory)dev-deps: build development dependencies, in particularocamlformat,odocandmerlinodoc: build documentation withodocfmt: format the code usingocamlformattest: run tests