summaryrefslogtreecommitdiff
path: root/cppo.opam
diff options
context:
space:
mode:
Diffstat (limited to 'cppo.opam')
-rw-r--r--cppo.opam26
1 files changed, 15 insertions, 11 deletions
diff --git a/cppo.opam b/cppo.opam
index ca016ff..885e52a 100644
--- a/cppo.opam
+++ b/cppo.opam
@@ -1,20 +1,19 @@
+# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
-maintainer: "martin@mjambon.com"
-authors: "Martin Jambon"
-license: "BSD-3-Clause"
-homepage: "https://github.com/ocaml-community/cppo"
-doc: "https://ocaml-community.github.io/cppo/"
-bug-reports: "https://github.com/ocaml-community/cppo/issues"
-depends: [
- "ocaml" {>= "4.02.3"}
- "dune" {>= "1.0"}
- "base-unix"
-]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+ ["dune" "build" "-p" name "@doc"] {with-doc}
+]
+maintainer: [
+ "Martin Jambon <martin@mjambon.com>" "Yishuai Li <yishuai@upenn.edu>"
]
+authors: ["Martin Jambon"]
+bug-reports: "https://github.com/ocaml-community/cppo/issues"
+homepage: "https://github.com/ocaml-community/cppo"
+doc: "https://ocaml-community.github.io/cppo"
+license: "BSD-3-Clause"
dev-repo: "git+https://github.com/ocaml-community/cppo.git"
synopsis: "Code preprocessor like cpp for OCaml"
description: """
@@ -28,3 +27,8 @@ Cppo is:
* reasonably fast
* simple to install and to maintain
"""
+depends: [
+ "ocaml" {>= "4.02.3"}
+ "dune" {>= "1.10"}
+ "base-unix"
+]