Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,15 @@ opam repo add rocq-released https://rocq-prover.org/opam/released
opam install {{ opam_name }}{{^ opam_name }}coq-{{ shortname }}{{/ opam_name }}
```

To instead build and install manually, do:
To instead build and install manually, you need to make sure that all the
libraries this development depends on are installed. This easiest to do that
is still to rely on opam:

``` shell
git clone {{# submodule }}--recurse-submodules {{/ submodule }}https://github.com/{{ organization }}/{{ shortname }}.git
cd {{ shortname }}
opam repo add rocq-released https://rocq-prover.org/opam/released
opam install --deps-only .
{{# dune }}
dune build
dune install
Expand Down