summaryrefslogtreecommitdiff
path: root/editor/dune
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2022-02-07 16:00:56 +0100
committerSébastien Dailly <sebastien@dailly.me>2022-02-07 16:43:33 +0100
commit1961a9779b482cf9cbdb3365137c2e74423067c6 (patch)
tree3965e0e464b9dfb8ddff10338dd6757af13238c2 /editor/dune
parentd20d14b4f4a903ef9aea4c01dd46fab5ecbab6ae (diff)
Text editor using quill
Diffstat (limited to 'editor/dune')
-rwxr-xr-xeditor/dune17
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})))