ocaml-containers/src/core/dune
2019-12-14 12:08:48 -06:00

23 lines
555 B
Text

(executable
(name mkshims)
(modules mkshims)
(libraries dune.configurator))
(rule
(targets CCShims_.ml CCShimsList_.ml CCShimsFun_.ml CCShimsFun_.mli
CCShimsArray_.ml CCShimsFormat_.ml CCShimsMkLet_.ml)
(deps ./mkshims.exe)
(action
(run ./mkshims.exe)))
(library
(name containers)
(public_name containers)
(wrapped false)
(modules :standard \ mkshims)
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -safe-string -nolabels -open
CCMonomorphic)
(ocamlopt_flags
(:include ../flambda.flags))
(libraries seq containers.monomorphic))