-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMETA
More file actions
30 lines (26 loc) · 736 Bytes
/
META
File metadata and controls
30 lines (26 loc) · 736 Bytes
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
description = "The Mezzo programming language"
requires = ""
package "rtlib" (
requires = "mezzo"
description = "The Mezzo runtime support library"
archive(byte) = "MezzoLib.cma"
archive(native) = "MezzoLib.cmxa"
)
package "corelib" (
requires = "mezzo.rtlib"
description = "The Mezzo core library"
archive(byte) = "MezzoCoreLib.cma"
archive(native) = "MezzoCoreLib.cmxa"
)
package "stdlib" (
requires = "mezzo.corelib"
description = "The Mezzo standard library"
archive(byte) = "MezzoStdLib.cma"
archive(native) = "MezzoStdLib.cmxa"
)
package "build" (
requires = "mezzo"
description = "The Mezzo Ocamlbuild plugin"
archive(byte) = "ocamlbuild_mezzo.cma"
archive(native) = "ocamlbuild_mezzo.cmxa"
)