-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdune-project
51 lines (41 loc) · 910 Bytes
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
(lang dune 3.17)
(using menhir 3.0)
(implicit_transitive_deps false)
(license CC-BY-NC-ND-4.0)
(authors "Kohei Suenaga <ksuenaga@gmail.com>")
(maintainers "Kohei Suenaga <ksuenaga@gmail.com>")
(source
(github kuis-isle3sw/IoPLMaterials))
(generate_opam_files true)
(package
(name miniml-compiler)
(synopsis "Dummy package context for MiniML compiler")
(depends
ocaml
menhir
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
:with-dev-setup
(= 0.27.0)))))
(package
(name miniml-interpreter)
(synopsis "Dummy package context for MiniML interpreter")
(depends
ocaml
menhir
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
:with-dev-setup
(= 0.27.0)))))
(package
(name tutorial)
(synopsis "Dummy package context for OCaml tutorial")
(depends
ocaml
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
:with-dev-setup
(= 0.27.0)))))