-
Notifications
You must be signed in to change notification settings - Fork 2
/
dune
32 lines (28 loc) · 781 Bytes
/
dune
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
(env
(dev
(flags
(; 4: Fragile pattern matching: matching that will remain complete
; even if additional constructors are added to one of the
; variant types matched.
; 40: Constructor or label name used out of scope.
; 42: Disambiguated constructor or label name (compatibility warning)
; 44: Open statement shadows already defined identifier
; 48: Implicit elimination of optional arguments.
; 70: Missing .mli file
-w
+A-4-40-42-44-48-70
-strict-sequence
-safe-string
-g
-annot))))
(vendored_dirs vendor)
(alias
(name opam)
(deps illuaminate.opam))
;; Cut down version of @all - doesn't build the executables in src/tools.
(alias
(name everything)
(deps
(alias opam)
(alias install)
(alias doc)))