-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune
70 lines (62 loc) · 2.66 KB
/
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
64
65
66
67
68
69
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This file is part of the Codex semantics library. ;;
;; ;;
;; Copyright (C) 2013-2024 ;;
;; CEA (Commissariat à l'énergie atomique et aux énergies ;;
;; alternatives) ;;
;; ;;
;; you can redistribute it and/or modify it under the terms of the GNU ;;
;; Lesser General Public License as published by the Free Software ;;
;; Foundation, version 2.1. ;;
;; ;;
;; It is distributed in the hope that it will be useful, ;;
;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;
;; GNU Lesser General Public License for more details. ;;
;; ;;
;; See the GNU Lesser General Public License version 2.1 ;;
;; for more details (enclosed in the file LICENSE). ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(dirs :standard \ cfg tests bench benchmarks unused )
(vendored_dirs odvtk)
(env
(dev
(flags (:standard -warn-error -a+31 -w -16-32-26-9-27-34-20-67-70)))
(staticrelease
(flags (:standard -ccopt -static -warn-error -a+31 -w -16-32-26-9-27-34-20-67-70)))
(release
; (flags (:standard )))
(ocamlopt_flags (:standard -O3)))
)
(library
(public_name "codex.codex_log")
(name codex_log)
(libraries tracelog)
(modules codex_log)
)
(library
(public_name "codex.codex_config")
(name codex_config)
(modules codex_config)
(libraries zarith)
)
(library
(public_name "codex")
(name codex)
(modules codex)
(libraries (re_export codex.transfer_functions)
(re_export codex.fixpoint)
(re_export codex.codex_config)
(re_export codex.datatype_sig)
(re_export codex.extstdlib)
(re_export codex.framac_ival)
(re_export codex.constraints)
(re_export codex.lattices)
(re_export codex.single_value_abstraction)
(re_export codex.smtbackend)
(re_export codex.codex_log)
(re_export tracelog)
(re_export codex.types)
(re_export codex.utils.mutable_radix_trie)
(re_export codex.domains)))