-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_turing.opam
More file actions
33 lines (33 loc) · 870 Bytes
/
ft_turing.opam
File metadata and controls
33 lines (33 loc) · 870 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: "Turing machine interpreter"
description: "An interpreter for Turing machines defined in .json files."
maintainer: ["Dario Pinto <laradiopotin@gmail.com>"]
authors: ["Dario Pinto <laradiopotin@gmail.com>"]
homepage: "https://github.com/RadioPotin/ft-turing42"
bug-reports: "https://github.com/RadioPotin/ft-turing42/issues"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.8" & >= "2.8"}
"yojson" {>= "1.7.0"}
"cmdliner" {= "1.0.4"}
"containers" {>= "3.5"}
"menhir" {>= "2.1"}
"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/ft-turing42.git"