summaryrefslogtreecommitdiff
path: root/2023/ocaml/day4/day4.opam
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-02-26 23:16:00 +0100
committerSanto Cariotti <santo@dcariotti.me>2024-02-26 23:17:18 +0100
commit52c33969d7b358cdac40f02a8562e37f82a96135 (patch)
tree0cf9edf687d8f3be524f9b563255204af7f178a7 /2023/ocaml/day4/day4.opam
parent8ff53967fac0ba5c8cee1a248a38e8e0ad1b72ee (diff)
Add day4
Diffstat (limited to '2023/ocaml/day4/day4.opam')
-rw-r--r--2023/ocaml/day4/day4.opam31
1 files changed, 31 insertions, 0 deletions
diff --git a/2023/ocaml/day4/day4.opam b/2023/ocaml/day4/day4.opam
new file mode 100644
index 0000000..36cd213
--- /dev/null
+++ b/2023/ocaml/day4/day4.opam
@@ -0,0 +1,31 @@
+# This file is generated by dune, edit dune-project instead
+opam-version: "2.0"
+synopsis: "A short synopsis"
+description: "A longer description"
+maintainer: ["Maintainer Name"]
+authors: ["Author Name"]
+license: "LICENSE"
+tags: ["topics" "to describe" "your" "project"]
+homepage: "https://github.com/username/reponame"
+doc: "https://url/to/documentation"
+bug-reports: "https://github.com/username/reponame/issues"
+depends: [
+ "ocaml"
+ "dune" {>= "3.12"}
+ "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/username/reponame.git"