refactor(runtimes): add move the OCaml runtime into runtimes/ocaml

This commit is contained in:
Emile Rolley 2022-07-19 16:28:42 +02:00
parent cda3bfb3aa
commit c09b457988
5 changed files with 8 additions and 9 deletions

View File

@ -14,14 +14,6 @@
verification)
(modules plugin driver))
(library
(name runtime)
(public_name catala.runtime)
(preprocess
(pps ppx_yojson_conv))
(libraries calendar zarith zarith_stubs_js)
(modules runtime))
(executable
(name catala_web_interpreter)
(modes byte js)

2
dune
View File

@ -1,4 +1,4 @@
(dirs compiler french_law build_system)
(dirs runtimes compiler french_law build_system)
(data_only_dirs tests examples syntax_highlighting)

7
runtimes/ocaml/dune Normal file
View File

@ -0,0 +1,7 @@
(library
(name runtime)
(public_name catala.runtime)
(preprocess
(pps ppx_yojson_conv))
(libraries calendar zarith zarith_stubs_js)
(modules runtime))