-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune
56 lines (50 loc) · 718 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
(library
(name wutu)
(modules
asmgen
assembly
compile
constants
errors
exprs
graph
lexer
parser
phases
pretty
runner
wast
watgen)
(libraries ounit2 extlib str base64)
(wrapped false))
(executable
(name main)
(modules main)
(libraries unix str wutu))
(executable
(name server)
(modules server)
(libraries
async_kernel
base
base64
cohttp-async
core_unix.command_unix
http
mirage-crypto
yojson
wutu))
(library
(name tester)
(modules helpers integration unit)
(libraries ounit2 extlib str wutu)
(wrapped false))
(test
(name test)
(modules test)
(libraries tester wutu))
(include_subdirs unqualified)
(env
(dev
(flags
(:standard -warn-error -A))))