Skip to content

Commit 67db2e0

Browse files
Rodolphe LepigreYishuai Li
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
_build/
12
*.vo
23
*.glob
34
*.v.d

dune-project

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(lang dune 3.8)
2+
(using coq 0.8)

examples/dune

Lines changed: 4 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 0 deletions
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)