Skip to content

Commit 67db2e0

Browse files
Rodolphe Lepigreliyishuai
Rodolphe Lepigre
authored andcommitted
Support compilation using [dune].
1 parent b1fa280 commit 67db2e0

File tree

5 files changed

+12
-1
lines changed

5 files changed

+12
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
_build/
12
*.vo
23
*.glob
34
*.v.d

dune-project

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(lang dune 3.8)
2+
(using coq 0.8)

examples/dune

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
(include_subdirs qualified)
2+
(coq.theory
3+
(name ExtLibExamples)
4+
(theories ExtLib))

theories/Generic/Ind.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Require Import List String.
1+
From Coq Require Import List String.
22
Require Import ExtLib.Structures.CoMonad.
33

44
Set Implicit Arguments.

theories/dune

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
(include_subdirs qualified)
2+
(coq.theory
3+
(name ExtLib)
4+
(package coq-ext-lib))

0 commit comments

Comments
 (0)