2019-07-24 14:34:26 +02:00
|
|
|
(* Command-line options for CameLIGO *)
|
2019-05-12 19:31:22 +02:00
|
|
|
|
2019-07-24 14:34:26 +02:00
|
|
|
(* If the value of [input] is [Some src], the name of the CameLIGO
|
|
|
|
source file, with the extension ".mligo", is [src]. If [input] is
|
2019-05-12 19:31:22 +02:00
|
|
|
[Some "-"] or [None], the source file is read from standard
|
|
|
|
input. *)
|
|
|
|
|
2019-05-15 15:03:15 +02:00
|
|
|
type options = {
|
|
|
|
input : string option;
|
|
|
|
libs : string list;
|
|
|
|
verbose : Utils.String.Set.t;
|
|
|
|
}
|
2019-05-12 19:31:22 +02:00
|
|
|
|
2019-05-15 15:03:15 +02:00
|
|
|
val read : unit -> options
|