(lang dune 3.0)
(name integers)
(sections (lib .) (libexec .) (doc ../../doc/integers) (stublibs ../stublibs))
(files
 (lib
  (META
   dune-package
   integers.a
   integers.cma
   integers.cmxa
   libintegers_stubs.a
   ocaml_integers.h
   opam
   signed.cmi
   signed.cmt
   signed.cmti
   signed.cmx
   signed.ml
   signed.mli
   top/install_integer_printers.cmi
   top/install_integer_printers.cmt
   top/install_integer_printers.cmti
   top/install_integer_printers.ml
   top/install_integer_printers.mli
   top/integer_printers.cmi
   top/integer_printers.cmt
   top/integer_printers.cmti
   top/integer_printers.ml
   top/integer_printers.mli
   top/integers_top.cma
   unsigned.cmi
   unsigned.cmt
   unsigned.cmti
   unsigned.cmx
   unsigned.ml
   unsigned.mli))
 (libexec (integers.cmxs))
 (doc (CHANGES.md LICENSE.md README.md))
 (stublibs (dllintegers_stubs.so)))
(library
 (name integers)
 (kind normal)
 (synopsis "Signed and unsigned integers of various sizes")
 (archives (byte integers.cma) (native integers.cmxa))
 (plugins (byte integers.cma) (native integers.cmxs))
 (foreign_objects unsigned_stubs.o)
 (foreign_archives libintegers_stubs.a)
 (native_archives integers.a)
 (modes byte native)
 (modules
  (unwrapped
   ((name Signed) (obj_name signed) (visibility public) (impl) (intf))
   ((name Unsigned) (obj_name unsigned) (visibility public) (impl) (intf)))))
(library
 (name integers.top)
 (kind normal)
 (synopsis "toplevel pretty printers")
 (archives (byte top/integers_top.cma))
 (plugins (byte top/integers_top.cma))
 (requires integers compiler-libs)
 (modes byte)
 (modules
  (unwrapped
   ((name Install_integer_printers)
    (obj_name install_integer_printers)
    (visibility public)
    (impl)
    (intf))
   ((name Integer_printers)
    (obj_name integer_printers)
    (visibility public)
    (impl)
    (intf)))))
