(lang dune 2.8)
(name benchmark)
(library
 (name benchmark)
 (kind normal)
 (synopsis "Benchmark running times of code")
 (archives (byte benchmark.cma) (native benchmark.cmxa))
 (plugins (byte benchmark.cma) (native benchmark.cmxs))
 (native_archives benchmark.a)
 (requires unix)
 (main_module_name Benchmark)
 (modes byte native)
 (modules
  (singleton
   (name Benchmark)
   (obj_name benchmark)
   (visibility public)
   (impl)
   (intf))))
