Add public_name's to all dune sub libraries

These will all live under the jbuilder package
This commit is contained in:
Rudi Grinberg 2018-04-05 12:03:52 +08:00
parent 01326fb312
commit e832b7230d
5 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,6 @@
(library
((name configurator)
(public_name jbuilder.configurator)
(libraries (stdune ocaml_config))
(flags (:standard -safe-string (:include flags/flags.sexp)))
(preprocess no_preprocessing)))

View File

@ -2,5 +2,6 @@
(library
((name ocaml_config)
(public_name jbuilder.ocaml_config)
(libraries (stdune usexp))
(synopsis "Interpret the output of 'ocamlc -config'")))

View File

@ -1,3 +1,4 @@
(library
((name caml)
(public_name jbuilder.caml)
(synopsis "Wrapped version of the OCaml stdlib")))

View File

@ -1,4 +1,5 @@
(library
((name stdune)
(public_name jbuilder.stdune)
(synopsis "Standard library of Dune")
(libraries (caml unix))))

View File

@ -1,6 +1,8 @@
(jbuild_version 1)
(library ((name usexp)))
(library
((name usexp)
(public_name jbuilder.usexp)))
(rule
(with-stdout-to table.ml.gen (run gen/gen_parser_automaton.exe)))