mlox/MlLox.opam

31 lines
674 B
Text
Raw Normal View History

2024-08-02 00:10:48 +02:00
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A short synopsis"
description: "A longer description"
2024-08-25 21:22:53 +02:00
authors: ["Moritz Gmeiner"]
2024-08-02 00:10:48 +02:00
license: "LICENSE"
tags: ["topics" "to describe" "your" "project"]
2024-08-25 21:22:53 +02:00
homepage: "https://github.com/morizzg/mlox"
2024-08-02 00:10:48 +02:00
doc: "https://url/to/documentation"
2024-08-25 21:22:53 +02:00
bug-reports: "https://github.com/morizzg/mlox/issues"
2024-08-02 00:10:48 +02:00
depends: [
"ocaml"
"dune" {>= "3.16"}
2024-08-25 21:22:53 +02:00
"ppx_deriving"
2024-08-02 00:10:48 +02:00
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
2024-08-25 21:22:53 +02:00
dev-repo: "git+https://github.com/morizzg/mlox.git"