mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-08 04:05:30 -05:00
- also make `unlabel` an explicit operation - use `Stdlib` instead of `Pervasives` - remove some warnings in Format
18 lines
475 B
Text
18 lines
475 B
Text
|
|
(executable
|
|
(name mkshims)
|
|
(modules mkshims)
|
|
(libraries dune.configurator))
|
|
|
|
(rule
|
|
(targets CCMonomorphicShims_.ml)
|
|
(deps ./mkshims.exe)
|
|
(action (with-stdout-to %{targets} (run ./mkshims.exe))))
|
|
|
|
(library
|
|
(name containers_monomorphic)
|
|
(public_name containers.monomorphic)
|
|
(modules CCMonomorphic CCMonomorphicShims_)
|
|
(wrapped false)
|
|
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -safe-string)
|
|
(ocamlopt_flags :standard (:include ../flambda.flags)))
|