mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 12:43:52 +01:00
14 lines
220 B
OCaml
14 lines
220 B
OCaml
open Ocamlbuild_plugin;;
|
|
open Command;;
|
|
|
|
dispatch begin function
|
|
| Before_rules ->
|
|
begin
|
|
end
|
|
| After_rules ->
|
|
begin
|
|
flag ["ocaml";"compile";"native";"gprof"] (S [ A "-p"]);
|
|
end
|
|
| _ -> ()
|
|
end
|