-
Notifications
You must be signed in to change notification settings - Fork 1
/
schmu.opam
36 lines (36 loc) · 837 Bytes
/
schmu.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
34
35
36
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1"
description:
"A functional programming language focused on a simple and practical core"
maintainer: ["tobiasjammer@gmail.com"]
authors: ["Tobias Mock"]
depends: [
"dune" {>= "2.9"}
"pp_loc" {>= "2.0.0"}
"alcotest" {>= "1.5.0" & with-test}
"dune-site" {>= "2.9"}
"menhir" {>= "20211230"}
"menhirLib" {>= "20211230"}
"ppx_deriving" {>= "5.2.1"}
"llvm" {>= "16.0.0" & < "17.0.0"}
"sexplib0" {>= "v0.15.0"}
"ppx_sexp_conv" {>= "v0.15.0"}
"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]
]