version = "v0.15.0"
description = ""
requires(ppx_driver) = "ppx_inline_test.libname ppxlib ppxlib.ast"
archive(ppx_driver,byte) = "ppx_bench.cma"
archive(ppx_driver,native) = "ppx_bench.cmxa"
plugin(ppx_driver,byte) = "ppx_bench.cma"
plugin(ppx_driver,native) = "ppx_bench.cmxs"
# This is what dune uses to find out the runtime dependencies of
# a preprocessor
ppx_runtime_deps = "ppx_bench.runtime-lib"
# This line makes things transparent for people mixing preprocessors
# and normal dependencies
requires(-ppx_driver) = "ppx_bench.runtime-lib"
ppx(-ppx_driver,-custom_ppx) = "./ppx.exe --as-ppx"
library_kind = "ppx_rewriter"
package "runtime-lib" (
  directory = "runtime-lib"
  version = "v0.15.0"
  description = "Runtime library for ppx_bench"
  requires = ""
  archive(byte) = "ppx_bench_lib.cma"
  archive(native) = "ppx_bench_lib.cmxa"
  plugin(byte) = "ppx_bench_lib.cma"
  plugin(native) = "ppx_bench_lib.cmxs"
)