forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune
63 lines (46 loc) · 949 Bytes
/
dune
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
52
53
54
55
56
57
58
59
60
61
62
63
(dirs
bsb
bsb_helper
common
core
depends
ext
frontend
js_parser
main
ml
napkin
ounit
ounit_tests
stubs
outcome_printer
super_errors)
(copy_files# bsb/*.{ml,mli})
(copy_files# bsb_helper/*.{ml,mli})
(copy_files# common/*.{ml,mli})
(copy_files# core/*.{ml,mli})
(copy_files# depends/*.{ml,mli})
(copy_files# ext/*.{ml,mli})
(copy_files# frontend/*.{ml,mli})
(copy_files# js_parser/*.{ml,mli})
(copy_files# main/*.{ml,mli})
(copy_files# ml/*.{ml,mli})
(copy_files# napkin/*.{ml,mli})
(copy_files# ounit/*.{ml,mli})
(copy_files# ounit_tests/*.{ml,mli})
(copy_files# stubs/*.{ml,mli,c})
(copy_files# outcome_printer/*.{ml,mli})
(copy_files# super_errors/*.{ml,mli})
(library
(name jscomp)
(flags "-w" "+26+27+32+33+39-d")
; Depends on:
(libraries unix str)
(modules_without_implementation
Jscmj_main
Lam_pass_unused_params
Lam_runtime)
(foreign_stubs
(language c)
(names ext_basic_hash_stubs)
(flags)))