-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
quickjs.opam
35 lines (35 loc) · 878 Bytes
/
quickjs.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"Bindings for QuickJS (a Javascript Engine to be embedded https://bellard.org/quickjs)"
maintainer: ["David Sancho <dsnxmoreno@gmail.com>"]
authors: ["David Sancho <dsnxmoreno@gmail.com>"]
license: "MIT"
homepage: "https://github.com/ml-in-barcelona/quickjs.ml"
bug-reports: "https://github.com/ml-in-barcelona/quickjs.ml/issues"
depends: [
"dune" {>= "3.8"}
"ocaml" {>= "5.0.0"}
"integers"
"ctypes"
"alcotest" {with-test}
"fmt" {with-test}
"odoc" {with-doc}
"ocaml-lsp-server" {with-test}
"ocamlformat" {= "0.26.1" & with-test}
]
dev-repo: "git+https://github.com/ml-in-barcelona/quickjs.ml.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@new-doc" {with-doc}
]
]