ocaml-containers/src/core/dune
2021-01-25 19:52:16 +01:00

25 lines
672 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 CCShimsMkLetList_.ml
CCShimsArrayLabels_.ml CCShimsInt_.ml CCShimsEither_.ml)
(deps ./mkshims.exe)
(action
(run ./mkshims.exe)))
(library
(name containers)
(public_name containers)
(wrapped false)
(modules :standard \ mkshims)
(flags :standard :standard -warn-error -a+8 -w -32-67 -safe-string -nolabels -open
CCMonomorphic)
(ocamlopt_flags (:include ../flambda.flags))
(libraries seq containers.monomorphic))
(ocamllex (modules CCSexp_lex))