-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathply_format.opam
35 lines (35 loc) · 881 Bytes
/
ply_format.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: "parse .ply files (stanford triangle format)"
maintainer: ["[email protected]"]
authors: ["Dale Vaillancourt"]
homepage: "https://github.com/dalev/path-tracer-ocaml"
bug-reports: "https://github.com/dalev/path-tracer-ocaml/issues"
depends: [
"dune" {>= "3.0"}
"alcotest" {>= "1.6.0" & with-test}
"core_kernel" {>= "v0.15.0"}
"ppx_sexp_message" {>= "v0.15.0"}
"ppx_base" {>= "v0.15.0"}
"parsexp" {>= "v0.15.0"}
"bigstringaf" {>= "0.9.0"}
"base_bigstring" {>= "v0.15.0"}
"base" {>= "v0.15.1"}
"ocaml" {>= "5.0.0~beta1"}
"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/dalev/path-tracer-ocaml.git"