Skip to content

Commit

Permalink
Format dune file
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon committed Sep 13, 2024
1 parent 5e9c0ea commit 6d43b92
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions runtime/wasm/dune
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@
(files runtime.wasm runtime.js))

(rule
(target version-dependent.wat)
(deps version-dependent/post-5.2.wat)
(enabled_if (>= %{ocaml_version} 5.2.0))
(action
(copy %{deps} %{target})))
(target version-dependent.wat)
(deps version-dependent/post-5.2.wat)
(enabled_if
(>= %{ocaml_version} 5.2.0))
(action
(copy %{deps} %{target})))

(rule
(target version-dependent.wat)
(deps version-dependent/pre-5.2.wat)
(enabled_if (< %{ocaml_version} 5.2.0))
(action
(copy %{deps} %{target})))
(target version-dependent.wat)
(deps version-dependent/pre-5.2.wat)
(enabled_if
(< %{ocaml_version} 5.2.0))
(action
(copy %{deps} %{target})))

(rule
(target runtime.wasm)
Expand Down

0 comments on commit 6d43b92

Please sign in to comment.