-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
43 lines (32 loc) · 1.02 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
(lang dune 3.7)
(name socamldebug)
(generate_opam_files true)
(map_workspace_root true)
(source
(github richardlford/socamldebug))
(authors "Richard L Ford")
(maintainers "Richard L Ford")
(license LICENSE)
(documentation https://url/to/documentation)
(package
(name socamldebug)
(synopsis "Standalone OCaml Debugger")
(description "An adaptation of the standard ocamldebug that can be built separately")
(depends ocaml dune sdebugger)
(tags
(topics ocaml debugger)))
(package
(name sdebugger)
(synopsis "Standalone OCaml Debugger Library")
(description "Library for an adaptation of the standard ocamldebug that can be built separately")
(depends ocaml dune soc_compat)
(tags
(topics ocaml debugger)))
(package
(name soc_compat)
(synopsis "Standalone OCaml Compatibility Library")
(description "Standalone OCaml utility compatibility Library")
(depends ocaml dune compiler-libs str unix)
(tags
(topics ocaml)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project