(lang dune 1.8)
(name rope)
(library
 (name rope)
 (kind normal)
 (synopsis "Ropes (heavyweight strings)")
 (archives (byte rope.cma) (native rope.cmxa))
 (plugins (byte rope.cma) (native rope.cmxs))
 (foreign_archives (native rope.a))
 (requires bytes)
 (main_module_name Rope)
 (modes byte native)
 (modules
  (main_module_name Rope)
  (modules ((name Rope) (obj_name rope) (visibility public) (impl) (intf)))
  (wrapped true)))
(library
 (name rope.top)
 (kind normal)
 (synopsis "Install toplevel (REPL) printers for Rope")
 (archives (byte top/rope_top.cma) (native top/rope_top.cmxa))
 (plugins (byte top/rope_top.cma) (native top/rope_top.cmxs))
 (foreign_archives (native top/rope_top.a))
 (requires compiler-libs.toplevel rope)
 (main_module_name Rope_top)
 (modes byte)
 (modules
  (main_module_name Rope_top)
  (modules ((name Rope_top) (obj_name rope_top) (visibility public) (impl)))
  (wrapped true)))
