dune/example/sample-projects/with-configure-step/config_common.ml

12 lines
186 B
OCaml

(* Various types used by configure and real_configure.ml *)
type switch =
| Yes
| No
| Auto
let string_of_switch = function
| Yes -> "Yes"
| No -> "No"
| Auto -> "Auto"