From 2045b73588c2e683eff077555086a5ef3263712a Mon Sep 17 00:00:00 2001 From: Guillaume Bury Date: Mon, 30 Jan 2023 17:58:12 +0100 Subject: [PATCH] Build fixes --- dune-project | 1 + memgraph_kitty.opam | 1 + src/core/dune | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dune-project b/dune-project index a63340e..3bbd786 100644 --- a/dune-project +++ b/dune-project @@ -29,6 +29,7 @@ (name memgraph_kitty) (depends (ocaml (>= 4.05.0)) + (memgraph (= :version)) (ppx_blob (and :build (>= 0.7.0))) (nanosvg (>= 0.1)) (nanosvg_text (>= 0.1)) diff --git a/memgraph_kitty.opam b/memgraph_kitty.opam index 86e453b..569c16c 100644 --- a/memgraph_kitty.opam +++ b/memgraph_kitty.opam @@ -20,6 +20,7 @@ bug-reports: "https://github.com/gbury/ocaml-memgraph/issues" depends: [ "dune" {>= "2.7"} "ocaml" {>= "4.05.0"} + "memgraph" {= version} "ppx_blob" {build & >= "0.7.0"} "nanosvg" {>= "0.1"} "nanosvg_text" {>= "0.1"} diff --git a/src/core/dune b/src/core/dune index 2c706ae..c3c6672 100644 --- a/src/core/dune +++ b/src/core/dune @@ -8,6 +8,5 @@ (public_name memgraph) (libraries unix) (modules Repr Dot) - (preprocess (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{input-file}))) )