catala/compiler/plugins/dune
Louis Gesbert 5ae4393004 Add two demo backend plugins
- one that is just the same as the python backend
- one that is a quick'n'dirty call to js_of_ocaml on top of the ocaml backend to
  generate js files

Use `make plugins` to test them. They are only expected to be useful as
demonstrations of how to write plugins.
2022-05-19 10:40:04 +02:00

12 lines
190 B
Plaintext

(executable
(name python)
(modes plugin)
(modules python)
(libraries catala.driver))
(executable
(name jsoo)
(modes plugin)
(modules jsoo)
(libraries catala.driver catala.runtime))