blob: 18ba438d4f82028fcee8939d20bb0277e2db1c6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
(executable
(name convert)
(libraries
js_of_ocaml
js_of_ocaml-lwt
promise
process
elements
brr
)
(modes js)
(preprocess (pps js_of_ocaml-ppx))
(link_flags (:standard -no-check-prims))
(modules convert dispatch CanvasTool)
)
(rule
(targets convert.js)
(deps convert.bc.js)
(action (copy %{deps} %{targets})))
(executable
(name worker)
(libraries
js_of_ocaml
js_of_ocaml-lwt
promise
process
)
(modes js)
(preprocess (pps js_of_ocaml-ppx))
(link_flags (:standard -no-check-prims))
(modules worker)
)
(rule
(targets worker.js)
(deps worker.bc.js)
(action (copy %{deps} %{targets})))
|