This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1,49 @@
|
|||
(library
|
||||
(name foobar)
|
||||
(libraries bytes)
|
||||
(public_name foobar)
|
||||
(synopsis "contains \"quotes\""))
|
||||
|
||||
(library
|
||||
(name foobar_baz)
|
||||
(public_name foobar.baz)
|
||||
(libraries bytes)
|
||||
(modes byte)
|
||||
(synopsis "sub library with modes set to byte"))
|
||||
|
||||
(library
|
||||
(name foobar_runtime_lib2)
|
||||
(js_of_ocaml
|
||||
(javascript_files foobar_runtime.js foobar_runtime2.js))
|
||||
(wasm_of_ocaml
|
||||
(javascript_files foobar_runtime.js foobar_runtime2.js)
|
||||
(wasm_files foobar_runtime.wat foobar_runtime2.wat))
|
||||
(public_name foobar.runtime-lib2)
|
||||
(synopsis "runtime library for foobar.rewriter2"))
|
||||
|
||||
(library
|
||||
(name foobar_rewriter)
|
||||
(synopsis "ppx rewriter")
|
||||
(libraries foobar foobar_rewriter2)
|
||||
(public_name foobar.rewriter)
|
||||
(ppx_runtime_libraries foobar_baz)
|
||||
(kind ppx_rewriter))
|
||||
|
||||
;; The ppx runtime libraries to this for library must end up in the requires(-ppx_driver)
|
||||
;; of foobar.rewriter
|
||||
(library
|
||||
(name foobar_rewriter2)
|
||||
(synopsis "ppx rewriter expander")
|
||||
(libraries foobar)
|
||||
(public_name foobar.rewriter2)
|
||||
(ppx_runtime_libraries foobar_runtime_lib2))
|
||||
|
||||
(library
|
||||
(name foobar_ppd)
|
||||
(public_name foobar.ppd)
|
||||
(synopsis "pp'd with a rewriter")
|
||||
(libraries foobar)
|
||||
(preprocess (pps foobar_rewriter)))
|
||||
|
||||
(rule (alias runtest)
|
||||
(action (echo "%{read:META.foobar}")))
|
||||
Loading…
Add table
Add a link
Reference in a new issue