-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdune-project
43 lines (36 loc) · 1.03 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
38
39
40
41
42
43
(lang dune 3.13)
; (using ctypes 0.3)
(name camlkit)
(version 0.3.0)
(generate_opam_files false)
(source (github dboris/camlkit))
(authors "Boris D. <[email protected]>")
(maintainers "Boris D. <[email protected]>")
(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
ctypes
ctypes-foreign
(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)))
(tags (objc bindings 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)))