-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy patheffects-examples.opam
More file actions
31 lines (31 loc) · 897 Bytes
/
effects-examples.opam
File metadata and controls
31 lines (31 loc) · 897 Bytes
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A collection of example programs using effects in OCaml 5"
description: "A collection of example programs using effects in OCaml 5"
maintainer: ["KC Sivaramakrishnan <kc@kcsrk.info>"]
authors: ["KC Sivaramakrishnan <kc@kcsrk.info>"]
homepage: "https://github.com/ocaml-multicore/effects-examples"
bug-reports: "https://github.com/ocaml-multicore/effects-examples/issues"
depends: [
"dune" {>= "2.9"}
"lwt" {>= "5.7"}
"multicont" {>= "1.0.3"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/ocaml-multicore/effects-examples.git"