(lang dune 2.9)
(name qcheck-core)
(version 0.20)
(library
 (name qcheck-core)
 (kind normal)
 (archives (byte qcheck_core.cma) (native qcheck_core.cmxa))
 (plugins (byte qcheck_core.cma) (native qcheck_core.cmxs))
 (native_archives qcheck_core.a)
 (requires unix bytes)
 (modes byte native)
 (modules
  (unwrapped
   ((name QCheck) (obj_name qCheck) (visibility public) (impl) (intf))
   ((name QCheck2) (obj_name qCheck2) (visibility public) (impl) (intf)))))
(library
 (name qcheck-core.runner)
 (kind normal)
 (archives (byte runner/qcheck_runner.cma) (native runner/qcheck_runner.cmxa))
 (plugins (byte runner/qcheck_runner.cma) (native runner/qcheck_runner.cmxs))
 (native_archives runner/qcheck_runner.a)
 (requires qcheck-core)
 (modes byte native)
 (modules
  (singleton
   (name QCheck_base_runner)
   (obj_name qCheck_base_runner)
   (visibility public)
   (impl)
   (intf))))
