forked from OCamlPro/ocaml-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
37 lines (34 loc) · 1.27 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
(lang dune 2.1)
(name ocaml-canvas)
(version 0.9)
(formatting disabled)
(generate_opam_files false)
(license "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception")
(authors "David Declerck")
(maintainers [email protected])
(source (github OCamlPro/ocaml-canvas))
(bug_reports https://github.com/OCamlPro/ocaml-canvas/issues)
(homepage https://ocamlpro.github.io/ocaml-canvas/)
(documentation https://ocamlpro.github.io/ocaml-canvas/sphinx)
(package
(name ocaml-canvas)
(depends
(ocaml (and :build (>= 4.03.0)))
(dune (and :build (>= 2.2)))
(dune-configurator (and :build (>= 1.11)))
(conf-freetype (and (<> :os macos) (<> :os win32)))
(conf-libfontconfig (and (<> :os macos) (<> :os win32)))
(conf-libxcb (and (<> :os macos) (<> :os win32)))
(conf-libxcb-shm (and (<> :os macos) (<> :os win32)))
(conf-libxcb-image (and (<> :os macos) (<> :os win32)))
(conf-libxcb-xkb (and (<> :os macos) (<> :os win32)))
(conf-libxcb-keysyms (and (<> :os macos) (<> :os win32)))
(conf-libwayland (and (<> :os macos) (<> :os win32)))
(conf-xkbcommon (and (<> :os macos) (<> :os win32)))
(odoc :with-doc))
(depopts
(js_of_ocaml (and :build (>= 3.6))))
(synopsis "The OCaml-Canvas library")
(description "\
The OCaml-Canvas library provides a portable Canvas for OCaml.
"))