about summary refs log tree commit diff stats
path: root/aoc.opam
diff options
context:
space:
mode:
authorbrian <brianmchu42@gmail.com>2023-12-03 21:54:01 -0800
committerbrian <brianmchu42@gmail.com>2023-12-03 21:54:01 -0800
commit7000f47b60b3fbdf90e2db12a363bbd1b2236b53 (patch)
tree13d9db09d3530f93d40afe1badf5da35c714a14d /aoc.opam
downloadAdventOfCode2023-7000f47b60b3fbdf90e2db12a363bbd1b2236b53.tar.gz
add template for ocaml
Diffstat (limited to 'aoc.opam')
-rw-r--r--aoc.opam23
1 files changed, 23 insertions, 0 deletions
diff --git a/aoc.opam b/aoc.opam
new file mode 100644
index 0000000..ac6f22c
--- /dev/null
+++ b/aoc.opam
@@ -0,0 +1,23 @@
+# This file is generated by dune, edit dune-project instead
+opam-version: "2.0"
+depends: [
+  "dune" {>= "2.7"}
+  "cohttp-lwt-unix"
+  "lwt_ssl"
+  "ppx_expect"
+  "odoc" {with-doc}
+]
+build: [
+  ["dune" "subst"] {dev}
+  [
+    "dune"
+    "build"
+    "-p"
+    name
+    "-j"
+    jobs
+    "@install"
+    "@runtest" {with-test}
+    "@doc" {with-doc}
+  ]
+]