diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2022-02-07 16:00:56 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2022-02-07 16:43:33 +0100 |
commit | 1961a9779b482cf9cbdb3365137c2e74423067c6 (patch) | |
tree | 3965e0e464b9dfb8ddff10338dd6757af13238c2 /editor/dune | |
parent | d20d14b4f4a903ef9aea4c01dd46fab5ecbab6ae (diff) |
Text editor using quill
Diffstat (limited to 'editor/dune')
-rwxr-xr-x | editor/dune | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/editor/dune b/editor/dune new file mode 100755 index 0000000..c87962c --- /dev/null +++ b/editor/dune @@ -0,0 +1,17 @@ +(executable + (name editor) + (libraries + brr + brr.note + elements + blog + ) + (modes js) + (preprocess (pps js_of_ocaml-ppx)) + (link_flags (:standard -no-check-prims)) + ) + +(rule + (targets editor.js) + (deps editor.bc.js) + (action (copy %{deps} %{targets}))) |