Module Topkg.Exts
Exts defines sets of file extensions.
File extensions
type t= ext listThe type for lists of file extensions.
val interface : tinterfaceisexts [".mli"; ".cmi"; ".cmti"].
val cmx : ext listcmxisext ".cmx".
val api : tapiisinterface @ cmx.
val c_library : ext listc_libraryis the extension for C libraries (archives). The actual value is determined from OCaml's configuration.
val c_dll_library : ext listc_dll_libraryis the extension for C dynamic libraries (archives). The actual value is determined from OCaml's configuration.
val library : ext listlibraryisexts [".cma"; ".cmxa"; ".cmxs"] @ c_library
val module_library : ext listmodule_libraryis(api @ library).
val exe : ext listexeis the extension for executables. The actual value is determined from OCaml's configuration.
val exts : string list -> ext listexts ssisssas a list of extensions.
val ext : string -> ext listext sissas a list of extensions.