this repo has no description
1(rule
2 (targets compat.ml)
3 (deps
4 (:x compat.cppo.ml))
5 (enabled_if
6 (not %{ocaml-config:ox}))
7 (action
8 (chdir
9 %{workspace_root}
10 (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))))
11
12(rule
13 (targets compat.ml)
14 (deps
15 (:x compat.cppo.ml))
16 (enabled_if %{ocaml-config:ox})
17 (action
18 (chdir
19 %{workspace_root}
20 (run %{bin:cppo} -V OCAML:%{ocaml_version} -D "OXCAML" %{x} -o %{targets}))))
21
22(library
23 (name odoc_model)
24 (public_name odoc.model)
25 (flags
26 (:standard -w -50))
27 (instrumentation
28 (backend landmarks --auto))
29 (libraries compiler-libs.common odoc-parser odoc_utils))