-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdune-project
More file actions
60 lines (52 loc) · 1.51 KB
/
dune-project
File metadata and controls
60 lines (52 loc) · 1.51 KB
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
54
55
56
57
58
59
60
(lang dune 3.16)
(using ctypes 0.3)
(name camlkit)
(generate_opam_files true)
(source (github dboris/camlkit))
(authors "Boris D. <borisd@gmx.com>")
(maintainers "Boris D. <borisd@gmx.com>")
(license ISC)
(package
(name camlkit-base)
(synopsis "OCaml bindings to the Objective-C runtime and some base frameworks")
(description "
This package provides OCaml bindings to the Objective-C runtime and
a selection of core Cocoa frameworks.")
(depends
(ocaml (>= 4.13))
ctypes
ctypes-foreign
(conf-clang (<> :os macos))
(conf-libobjc2 (<> :os macos))
(conf-gnustep-base (<> :os macos))
(alcotest :with-test))
(tags (objc bindings cocoa macos gnustep)))
(package
(name camlkit-gui)
(synopsis "OCaml bindings to the AppKit framework")
(description "OCaml bindings to the AppKit framework")
(depends
(camlkit-base (= :version))
(conf-gnustep-gui (<> :os macos)))
(tags (objc bindings gui cocoa macos gnustep)))
(package
(name camlkit)
(synopsis "Higher-level wrappers for Cocoa APIs")
(description "Higher-level wrappers for Cocoa APIs")
(depends
(camlkit-base (= :version))
(camlkit-gui (= :version))
(alcotest :with-test))
(tags (objc cocoa macos gnustep)))
(package
(name camlkit-dispatch)
(synopsis "OCaml bindings to libdispatch")
(description "\
Grand Central Dispatch (GCD or libdispatch) provides comprehensive support for \
concurrent code execution on multicore hardware.")
(depends
ctypes
ctypes-foreign
(conf-clang (<> :os macos))
(alcotest :with-test))
(tags (dispatch gcd bindings)))