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

12 lines
186 B
OCaml
Raw Normal View History

2017-03-21 15:48:19 +00:00
(* 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"