-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
66 lines (50 loc) · 1.38 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
(lang dune 3.4)
(name tiger)
(generate_opam_files true)
(source
(github is-hoku/tiger-ocaml))
(authors "Hoku Ishibe")
(maintainers "Hoku Ishibe")
(license LICENSE)
(documentation https://url/to/documentation)
(package
(name tiger)
(synopsis "Tiger Compiler")
(description "This is a tiger compiler which refers to the book, Modern Compiler Implementation in ML")
(depends ocaml dune))
(package
(name straight_line_program)
(synopsis "straight-line program")
(description "straight-line program")
(depends ocaml dune))
(package
(name binary_search_tree)
(synopsis "Binary Search Tree")
(description "binary search tree")
(depends ocaml dune))
(package
(name lexical_analysis)
(synopsis "Lexical Analysis")
(description "lexical analyzer")
(depends ocaml dune))
(package
(name syntactic_analysis)
(synopsis "Syntactic Analysis")
(description "syntactic analyzer")
(depends ocaml dune))
(package
(name semantic_action)
(synopsis "Semantic Action")
(description "syntactic analyzer with semantic action")
(depends ocaml dune))
(package
(name semantic_analysis)
(synopsis "Semantic Analysis")
(description "semantic analyzer")
(depends ocaml dune))
(package
(name activation_record)
(synopsis "Activation Record")
(description "activation record")
(depends ocaml dune))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project