forked from c-cube/qcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qcheck.opam
33 lines (33 loc) · 821 Bytes
/
qcheck.opam
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
33
opam-version: "2.0"
maintainer: "[email protected]"
author: [ "the qcheck contributors" ]
synopsis: "Compatibility package for qcheck"
homepage: "https://github.com/c-cube/qcheck/"
license: "BSD-2-Clause"
doc: ["http://c-cube.github.io/qcheck/"]
version: "0.21.2"
tags: [
"test"
"property"
"quickcheck"
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"dune" { >= "2.8.0" }
"base-bytes"
"base-unix"
"qcheck-core" { = version }
"qcheck-ounit" { = version }
"alcotest" {with-test}
"odoc" {with-doc}
"ocaml" {>= "4.08.0"}
]
dev-repo: "git+https://github.com/c-cube/qcheck.git"
bug-reports: "https://github.com/c-cube/qcheck/issues"
conflicts: [
"ounit" { < "2.0" }
]