mte/unikernel/duniverse/dune_/example/with-configure-step.t/config_common.ml
2025-11-11 02:07:51 +01:00

11 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"