(lang dune 3.23)
(name integers)
(sections
 (lib /usr/lib64/ocaml/integers)
 (libexec /usr/lib64/ocaml/integers)
 (doc /usr/doc/integers)
 (stublibs /usr/lib64/ocaml/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.ml
   top/integers_top.cma
   top/integers_top.cmi
   top/integers_top.cmt
   top/integers_top.ml
   top/integers_top__Install_integer_printers.cmi
   top/integers_top__Install_integer_printers.cmt
   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 (archives (for all) (files libintegers_stubs.a)))
 (foreign_dll_files ../stublibs/dllintegers_stubs.so)
 (native_archives integers.a)
 (modes byte native)
 (modules
  (unwrapped
   (module
    (obj_name signed)
    (visibility public)
    (source (path Signed) (intf (path signed.mli)) (impl (path signed.ml))))
   (module
    (obj_name unsigned)
    (visibility public)
    (source
     (path Unsigned)
     (intf (path unsigned.mli))
     (impl (path unsigned.ml)))))))
(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)
 (main_module_name Integers_top)
 (modes byte)
 (modules
  (wrapped
   (group
    (alias
     (obj_name integers_top)
     (visibility public)
     (kind alias)
     (source (path Integers_top) (impl (path top/integers_top.ml-gen))))
    (name Integers_top)
    (modules
     (module
      (obj_name integers_top__Install_integer_printers)
      (visibility public)
      (source
       (path Install_integer_printers)
       (impl (path top/install_integer_printers.ml))))))
   (wrapped true))))
