ligo/myocamlbuild.ml

15 lines
344 B
OCaml
Raw Normal View History

2016-01-12 17:20:06 +00:00
(* OASIS_START *)
(* OASIS_STOP *)
# 3 "myocamlbuild.ml"
2016-04-26 17:03:48 +01:00
module JS = Jane_street_ocamlbuild_goodies
2016-01-12 17:20:06 +00:00
2016-04-26 17:03:48 +01:00
let dev_mode = true
2016-01-12 17:20:06 +00:00
let () =
Ocamlbuild_plugin.dispatch (fun hook ->
2016-04-26 17:03:48 +01:00
JS.alt_cmxs_of_cmxa_rule hook;
JS.pass_predicates_to_ocamldep hook;
if dev_mode && not Sys.win32 then JS.track_external_deps hook;
2016-01-12 17:20:06 +00:00
dispatch_default hook)