diff options
| author | Théo Zimmermann | 2020-04-13 13:19:24 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2020-04-13 13:19:24 +0200 |
| commit | 1a309cd7d8547d9a2b5ee89adfe8ba1c581237e1 (patch) | |
| tree | cdf73dfa34c341c0b98b7a41c57d12d7837df127 /theories | |
| parent | 227520b14e978e19d58368de873521a283aecedd (diff) | |
| parent | 29aa2b5533a36e170fb0ed947f86e70d5b1cb8fb (diff) | |
Merge PR #11539: [dune] [stdlib] Build the standard library natively with Dune.
Reviewed-by: Zimmi48
Diffstat (limited to 'theories')
| -rw-r--r-- | theories/dune | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/theories/dune b/theories/dune new file mode 100644 index 0000000000..b9af76d699 --- /dev/null +++ b/theories/dune @@ -0,0 +1,38 @@ +(coq.theory + (name Coq) + (package coq) + (synopsis "Coq's Standard Library") + (flags -q) + ; (mode native) + (boot) + ; (per_file + ; (Init/*.v -> -boot)) + (libraries + coq.plugins.ltac + coq.plugins.tauto + + coq.plugins.cc + coq.plugins.firstorder + + coq.plugins.numeral_notation + coq.plugins.string_notation + coq.plugins.int63_syntax + coq.plugins.r_syntax + coq.plugins.float_syntax + + coq.plugins.btauto + coq.plugins.rtauto + + coq.plugins.setoid_ring + coq.plugins.nsatz + coq.plugins.omega + + coq.plugins.zify + coq.plugins.micromega + + coq.plugins.funind + + coq.plugins.ssreflect + coq.plugins.derive)) + +(include_subdirs qualified) |
