-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
53 lines (45 loc) · 883 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
52
53
(lang dune 3.0)
(implicit_transitive_deps true)
; Menhir options
(using menhir 2.0)
; Since we want to generate opam files we need to provide informations ;
(generate_opam_files true)
(name mdrp_lib)
(version dev)
(authors "mattiasdrp")
(maintainers "mattiasdrp")
(source (github mattiasdrp/mdrp_lib))
; Not specifying bug_reports since it defaults to the github issue page
(homepage "https://mattiasdrp.github.io/mdrp_lib/")
(documentation "https://mattiasdrp.github.io/mdrp_lib/")
; Packages
(package
(name mdrp_lib)
(synopsis "Mdrp Package")
(description "\
TODO")
(depends
ocaml
dune
(odoc :with-doc)
))
(package
(name mdrp_cards)
(synopsis "Mdrp Cards")
(description "\
TODO")
(depends
ocaml
dune
(odoc :with-doc)
))
(package
(name mdrp_poker)
(synopsis "Mdrp Poker")
(description "\
TODO")
(depends
ocaml
dune
(odoc :with-doc)
))