catala/build_system/dune

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
685 B
Plaintext
Raw Normal View History

(library
(name clerk_driver)
(public_name catala.clerk_driver)
(libraries
catala.runtime_ocaml
2022-11-21 12:46:17 +03:00
catala.catala_utils
catala.surface
ninja_utils
cmdliner
re
ocolor)
(modules clerk_scan clerk_runtest clerk_driver))
(rule
(target custom_linking.sexp)
(mode fallback)
(action
(with-stdout-to
%{target}
(echo "()"))))
(executable
(name clerk)
(public_name clerk)
(flags
(:standard
(:include custom_linking.sexp)))
(libraries clerk_driver)
2023-11-28 19:22:21 +03:00
(link_deps
(package catala))
; not a real dependency, but when running clerk in practice you always want the catala binary to be up-to-date (e.g. `dune exec -- ckerk test`)
(modules clerk)
(package catala))