diff options
Diffstat (limited to 'dev/dune')
| -rw-r--r-- | dev/dune | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev/dune b/dev/dune new file mode 100644 index 0000000000..792da6254a --- /dev/null +++ b/dev/dune @@ -0,0 +1,17 @@ +(library + (name top_printers) + (public_name coq.top_printers) + (synopsis "Coq's Debug Printers") + (wrapped false) + (modules :standard) + (optional) + (libraries coq.toplevel coq.plugins.ltac)) + +(rule + (targets dune-dbg) + (deps dune-dbg.in + ../checker/coqchk.bc + ../topbin/coqtop_byte_bin.bc + ; This is not enough as the call to `ocamlfind` will fail :/ + top_printers.cma) + (action (copy dune-dbg.in dune-dbg))) |
