blob: d6eba673a661e91bc992ad01cdd12909d256c56e (
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
|
(executable
(name convert)
(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 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})))
|