-
Notifications
You must be signed in to change notification settings - Fork 25
/
_tags
26 lines (20 loc) · 922 Bytes
/
_tags
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
<**/.git>: -traverse
## Folders where to find the files
<src> : include
<src/*> : include
<src/generators/*> : include
# Link libraries and ppx common for all targets
<**/*.ml> : package(containers), package(pla), package(ppx_deriving), package(ppx_deriving.std), package(pla.ppx), package(result)
<**/*.byte> or <**/*.d.byte> or <**/*.native> : package(containers), package(pla), package(ppx_deriving), package(result)
# Link libraries for the Test executable
<test/*.ml> : package(oUnit)
<test/*.byte> or <test/*.d.byte> or <test/*.native> : package(oUnit), package(str)
# Link libraries and ppx for Js (js_of_ocaml) files
<src/js/*.byte> : package(js_of_ocaml)
<src/js/*.ml> : package(js_of_ocaml), package(js_of_ocaml-ppx)
# Makes the bytecode debuggable and linking the custom runtime
true : bin_annot,custom,debug
true : color(always)
# Enables more warnings
true : warn(+27+33-58-3)
<examples> : not_hygienic