-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdune
45 lines (39 loc) · 839 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
(env
(_
(flags
(:standard -w +a-4-7-9-27-29-30-32..42-44-45-48-50-52-60-66..70))))
(executable
(name tlapm)
(modes byte exe)
(public_name tlapm)
(modules tlapm)
(libraries tlapm_lib)
(promote (until-clean))) ; Required to get `tlapm --version` during a release.
(library
(name tlapm_lib)
(modules
(:standard \ tlapm test_schedule why3_interface abstractor))
(libraries
unix
threads
str
cmdliner
dune-site
dune-build-info
camlzip ; main deps.
sexplib)
; for inline tests only (ppx_assert).
(foreign_stubs
(language c)
(names sysconf_stubs))
(inline_tests
(deps "../test/resources/module/m_save/TLC.tla"))
(preprocess
(pps ppx_inline_test ppx_assert)))
(ocamllex alexer)
(generate_sites_module
(module setup_paths)
(sites tlapm))
(include_subdirs unqualified)
(cram
(deps %{bin:tlapm}))