-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMETA.in
50 lines (44 loc) · 1.88 KB
/
META.in
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
description = "Modular and Open Platform for Static Analysis"
version = "@version@"
package "utils" (
description = "MOPSA utilities"
requires = "str yojson gmp apron apron.boxMPQ apron.octMPQ apron.polkaMPQ zarith"
version = "@version@"
archive(byte) = "MopsaUtils.cma"
archive(native) = "MopsaUtils.cmxa"
)
package "universal_parser" (
description = "Parser for MOPSA's Universal toy-language"
requires = "str yojson gmp apron apron.boxMPQ apron.octMPQ apron.polkaMPQ zarith mopsa.utils"
version = "@version@"
archive(byte) = "MopsaUniversalParser.cma"
archive(native) = "MopsaUniversalParser.cmxa"
)
package "clang_parser" (
description = "Clang-based C parser"
requires = "str yojson gmp apron apron.boxMPQ apron.octMPQ apron.polkaMPQ zarith mopsa.utils"
version = "@version@"
archive(byte) = "MopsaClangParser.cma"
archive(native) = "MopsaClangParser.cmxa"
)
package "cstub_parser" (
description = "Parser for MOPSA's language for C stubs"
requires = "str yojson gmp apron apron.boxMPQ apron.octMPQ apron.polkaMPQ zarith mopsa.utils"
version = "@version@"
archive(byte) = "MopsaCStubsParser.cma"
archive(native) = "MopsaCStubsParser.cmxa"
)
package "python_parser" (
description = "Parser for Python 3.x"
requires = "str yojson gmp apron apron.boxMPQ apron.octMPQ apron.polkaMPQ zarith mopsa.utils"
version = "@version@"
archive(byte) = "MopsaPythonParser.cma"
archive(native) = "MopsaPythonParser.cmxa"
)
package "analyzer" (
description = "MOPSA analyzer engine"
requires = "str yojson gmp apron apron.boxMPQ apron.octMPQ apron.polkaMPQ zarith @meta_analyzer_requires@"
version = "@version@"
archive(byte) = "MopsaAnalyzer.cma"
archive(native) = "MopsaAnalyzer.cmxa"
)