Superbol_free_lib.Projectval layout : Superbol_project.layoutLayout of projects managed via the CLI.
Functions for loading projects. They report diagnostics and exit the program upon error (invalid configuration file or system error).
Note: No file is ever written by these procedures, even in the case of project creation.
val in_ : dirname:string -> Superbol_project.tin_ ~dirname loads or creates a project with root directory dirname.
val load : ?dirname:string -> unit -> Superbol_project.tload ~dirname () is an alias for in_ ~dirname, and load () is equivalent to in_ ~dirname:".".
val for_ : filename:string -> Superbol_project.tfor_ ~filename searches the parent directories of filename until a project directory, that contains a "superbol.toml" configuration file, is found. If none is found, returns a project with a default configuration and Filename.dirname filename as root directory.
val for_filename : string -> Superbol_project.tfor_filename filename is an alias for for_ ~filename.