-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
dune-project
59 lines (52 loc) · 1.35 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
(lang dune 2.8)
(name odiff)
; Warning: The flag set for these foreign sources overrides the `:standard` set
; of flags. However the flags in this standard set are still added to the
; compiler arguments by Dune. This might cause unexpected issues. You can
; disable this warning by defining the option `(use_standard_c_and_cxx_flags <bool>)`
; in your `dune-project` file. Setting this option to `true` will
; effectively prevent Dune from silently adding c-flags to the compiler
; arguments which is the new recommended behaviour.
(use_standard_c_and_cxx_flags false)
(generate_opam_files true)
(version 3.1.2)
(source (github dmtrKovalenko/odiff))
(license MIT)
(authors "Dmitriy Kovalenko")
(maintainers "https://dmtrkovalenko.dev" "dmtr.kovalenko@outlook.com")
(package
(name odiff)
(synopsis "CLI for comparing images pixel-by-pixel")
(depends
odiff-core
odiff-io
(dune-build-info (>= 3.16.0))
(cmdliner (= 1.3.0))
)
)
(package
(name odiff-core)
(synopsis "Pixel-by-pixel image difference algorithm")
(depends
dune
(ocaml (= 5.2.0))
)
)
(package
(name odiff-io)
(synopsis "Ready to use io for odiff-core")
(depends
dune
odiff-core
(ocaml (= 5.2.0))
(dune-configurator (>= 3.16.0))
)
)
(package
(name odiff-tests)
(synopsis "Internal package for integration tests of odiff")
(depends
(alcotest (= 1.8.0))
odiff-core
)
)