File: dune.opam.template

package info (click to toggle)
ocaml-dune 3.17.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 32,324 kB
  • sloc: ml: 181,128; ansic: 3,629; sh: 1,054; lisp: 625; makefile: 171; python: 125; cpp: 48; javascript: 10
file content (26 lines) | stat: -rw-r--r-- 1,175 bytes parent folder | download
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
build: [
  ["ocaml" "boot/bootstrap.ml" "-j" jobs]
  ["./_boot/dune.exe" "build" "dune.install" "--release" "--profile" "dune-bootstrap" "-j" jobs]
]
depends: [
  # Please keep the lower bound in sync with .github/workflows/workflow.yml,
  # dune-project and min_ocaml_version in bootstrap.ml
  ("ocaml" {>= "4.08"} | ("ocaml" {>= "4.02" & < "4.08~~"} & "ocamlfind-secondary"))
  "base-unix"
  "base-threads"
  "lwt" { with-dev-setup & os != "win32" }
  "cinaps" { with-dev-setup }
  "csexp" { with-dev-setup & >= "1.3.0" }
  "js_of_ocaml" { with-dev-setup & os != "win32" }
  "js_of_ocaml-compiler" { with-dev-setup & os != "win32" }
  "mdx" { with-dev-setup & >= "2.3.0" & os != "win32" }
  "menhir" { with-dev-setup & os != "win32" }
  "ocamlfind" { with-dev-setup & os != "win32" }
  "odoc" { with-dev-setup & >= "2.4.0" & os != "win32" }
  "ppx_expect" { with-dev-setup & >= "v0.17" & os != "win32" }
  "ppx_inline_test" { with-dev-setup & os != "win32" }
  "ppxlib" { with-dev-setup & os != "win32" }
  "ctypes" { with-dev-setup & os != "win32" }
  "utop" { with-dev-setup & >= "2.6.0" & os != "win32" }
  "melange" { with-dev-setup & >= "4.0.0-51" & os != "win32" }
]