From ae9ee9bb16f7c9fb5f103eb8685ab7dccd510918 Mon Sep 17 00:00:00 2001 From: tobil4sk Date: Wed, 4 Sep 2024 19:16:27 +0100 Subject: [PATCH] Fix build error on windows (#160) --- src/c/dune | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/c/dune b/src/c/dune index 1bba4f68..027ba93a 100644 --- a/src/c/dune +++ b/src/c/dune @@ -135,12 +135,12 @@ let () = Jbuild_plugin.V1.send @@ {| if [ '%{ocaml-config:ccomp_type}' = 'msvc' ]; then \ %{cc} %{c} \ -I '%{lib:ctypes:.}' \ - -I %{ocaml_where} \ + -I '%{ocaml_where}' \ |}^ i_option ^{| /Fe\"%{targets}\"; \ else \ %{cc} %{c} \ -I '%{lib:ctypes:.}' \ - -I %{ocaml_where} \ + -I '%{ocaml_where}' \ |}^ i_option ^{| -o %{targets}; \ fi")))