Revision 9c4b41905123055be4c5334c08744e27de6828b8 authored by Pierre Boutillier on 18 September 2015, 08:05:02 UTC, committed by Pierre Boutillier on 18 September 2015, 10:36:00 UTC
1 parent 7b3fbc4
Raw File
myocamlbuild.ml
open Ocamlbuild_plugin

let doc_intro = "dev/api_intro"

let () =
  dispatch (function
	     | Before_options ->
		Options.use_ocamlfind := true
	     | After_rules ->
		dep ["ocaml"; "doc"; "extension:html"] & [doc_intro];
		flag ["ocaml"; "doc"; "extension:html"] &
		  (S[A"-t"; A"KaSim API";
		     A"-intro"; P doc_intro;
		     A"-colorize-code"])
	     | After_options | Before_rules | Before_hygiene | After_hygiene -> ())
back to top