-
Notifications
You must be signed in to change notification settings - Fork 14
/
dune-project
46 lines (40 loc) · 904 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
(lang dune 3.17)
(using ctypes 0.3)
(name raylib)
; cannot specify conditional deps otherwise
(generate_opam_files false)
(source (github tjammer/raylib-ocaml))
(license MIT)
(authors "Tobias Mock")
(maintainers "[email protected]")
(package
(name raylib)
(version 1.4.0)
(description "OCaml bindings for raylib")
(synopsis "OCaml bindings for raylib")
(depends
(dune (>= 3.17))
dune-configurator
(ctypes (>= 0.14))
(integers (>= 0.5))
(patch (>= 2.0))))
(package
(name raygui)
(version 1.4.0)
(description "OCaml bindings for raygui")
(synopsis "OCaml bindings for raygui")
(depends
(dune (>= 3.17))
dune-configurator
(ctypes (>= 0.14))
(raylib (>= 1.4.0))
(patch (>= 2.0))))
(package
(name raylib-gen)
(version 0.1.0)
(description "Binding generation for raylib")
(synopsis "Binding generation for raylib")
(depends
(dune (>= 3.17))
yojson
re))