-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomputor.opam
More file actions
33 lines (33 loc) · 907 Bytes
/
computor.opam
File metadata and controls
33 lines (33 loc) · 907 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
32
33
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "2nd Degree equation solver"
description:
"Functionnal programming project from the 42Paris computer engineering course. 2nd Degree equation solver."
maintainer: ["Dario Pinto <laradiopotin@gmail.com>"]
authors: ["Dario Pinto <laradiopotin@gmail.com>"]
homepage: "https://github.com/RadioPotin/computorv1"
bug-reports: "https://github.com/RadioPotin/computorv1/issues"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.8" & >= "2.8"}
"menhir" {>= "2.1"}
"js_of_ocaml" {>= "3.9"}
"js_of_ocaml-ppx" {build & >= "3.9"}
"bisect_ppx" {with-test & >= "2.6" & dev}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/RadioPotin/computorv1.git"