dune-site.plugins
Private_.Meta_parser
dune-site
dune-site.dynlink
dune-site.linker
dune-site.private
dune-site.toplevel
type t = {
name : string option;
entries : entry list;
}
and entry =
| Comment of string
| Rule of rule
| Package of t
and rule = {
var : string;
predicates : predicate list;
action : action;
value : string;
and action =
| Set
| Add
and predicate =
| Pos of string
| Neg of string
module Parse : sig ... end