forked from smorimoto/graphics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
30 lines (26 loc) · 819 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
(lang dune 2.1)
(name graphics)
(generate_opam_files true)
(license "LGPL-2.1 with OCaml linking exception")
(maintainers [email protected] [email protected])
(authors "Xavier Leroy"
"Jun Furuse"
"J-M Geffroy"
"Jacob Navia"
"Pierre Weis")
(source (github ocaml/graphics))
(documentation https://ocaml.github.io/graphics/)
(package
(name graphics)
(depends
"dune-configurator"
("conf-libX11" (<> :os win32))
("conf-pkg-config" (<> :os win32))
("ocaml" (>= "4.09.0~~")))
(synopsis "The OCaml graphics library")
(description "\
The graphics library provides a set of portable drawing
primitives. Drawing takes place in a separate window that is created
when Graphics.open_graph is called.
This library used to be distributed with OCaml up to OCaml 4.08.
"))