From 28d60e8f729ee6b66c9252c9766f3fe2d8d854cf Mon Sep 17 00:00:00 2001 From: Emilio Jesus Gallego Arias Date: Mon, 19 Nov 2018 20:10:59 +0100 Subject: [dune] Full Dune support. This add experimental support for building the full Ltac2 plugin with Dune, see tree at https://github.com/ejgallego/dune/tree/coq --- dune | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 dune (limited to 'dune') diff --git a/dune b/dune new file mode 100644 index 0000000000..5dbc4db66a --- /dev/null +++ b/dune @@ -0,0 +1,3 @@ +(env + (dev (flags :standard -rectypes)) + (release (flags :standard -rectypes))) -- cgit v1.2.3 From 66b6e83f4f4c32ad86333e13d65329be02c46048 Mon Sep 17 00:00:00 2001 From: Maxime Dénès Date: Thu, 25 Apr 2019 12:02:43 +0200 Subject: Prepare merge into Coq --- dune | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 dune (limited to 'dune') diff --git a/dune b/dune deleted file mode 100644 index 5dbc4db66a..0000000000 --- a/dune +++ /dev/null @@ -1,3 +0,0 @@ -(env - (dev (flags :standard -rectypes)) - (release (flags :standard -rectypes))) -- cgit v1.2.3 From 9779c0bf4945693bfd37b141e2c9f0fea200ba4d Mon Sep 17 00:00:00 2001 From: Maxime Dénès Date: Thu, 25 Apr 2019 14:09:42 +0200 Subject: Integrate build and documentation of Ltac2 Since Ltac2 cannot be put under the stdlib logical root (some file names would clash), we move it to the `user-contrib` directory, to avoid adding another hardcoded path in `coqinit.ml`, following a suggestion by @ejgallego. Thanks to @Zimmi48 for the thorough documentation review and the numerous suggestions. --- dune | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dune') diff --git a/dune b/dune index 787c3c3674..4beba1c14f 100644 --- a/dune +++ b/dune @@ -18,8 +18,9 @@ (targets .vfiles.d) (deps (source_tree theories) - (source_tree plugins)) - (action (with-stdout-to .vfiles.d (bash "%{bin:coqdep} -dyndep both -noglob -boot `find theories plugins -type f -name *.v`")))) + (source_tree plugins) + (source_tree user-contrib)) + (action (with-stdout-to .vfiles.d (bash "%{bin:coqdep} -dyndep both -noglob -boot `find theories plugins user-contrib -type f -name *.v`")))) (alias (name vodeps) -- cgit v1.2.3