blob: db5ba3f268f9c861d0e9053574b28246af5d29ee (
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
40
41
42
43
44
45
46
47
48
49
50
51
|
(library
(name outline)
(libraries
path)
(modules outline)
(preprocess (pps ppx_hash js_of_ocaml-ppx))
)
(executable
(name script)
(libraries
brr
brr.note
shapes
elements
blog
layer
worker_messages
outline
)
(modes js)
(modules script state selection)
(preprocess (pps ppx_hash js_of_ocaml-ppx))
(link_flags (:standard -no-check-prims))
)
(rule
(targets script.js)
(deps script.bc.js)
(action (copy %{deps} %{targets})))
(executable
(name worker)
(modules worker)
(libraries
js_of_ocaml
shapes
path
worker_messages
outline
)
(modes js)
(preprocess (pps ppx_hash js_of_ocaml-ppx))
(link_flags (:standard -no-check-prims))
)
(rule
(targets worker.js)
(deps worker.bc.js)
(action (copy %{deps} %{targets})))
|