27 lines
1.3 KiB
OCaml
27 lines
1.3 KiB
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* ocamlbuild *)
|
|
(* *)
|
|
(* Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 2007 Institut National de Recherche en Informatique et *)
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
(* under the terms of the Q Public License version 1.0. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
|
|
(* Original author: Nicolas Pouillard *)
|
|
|
|
include Signatures.OPTIONS with type command_spec = Command.spec
|
|
|
|
(* this option is not in Signatures.OPTIONS yet because adding tags to
|
|
the compilation of the plugin is a recent feature that may still be
|
|
subject to change, so the interface may not be stable; besides,
|
|
there is obviously little to gain from tweaking that option from
|
|
inside the plugin itself... *)
|
|
val plugin_tags : string list ref
|
|
|
|
val entry : bool Slurp.entry option ref
|
|
val init : unit -> unit
|