Advertise reason support

This commit is contained in:
Jeremie Dimino 2017-04-20 16:52:05 +01:00
parent 18377cddf5
commit 52b326ab43
2 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
* JBUILDER - A composable build system for OCaml * JBUILDER - A composable build system for OCaml and Reason
Jbuilder is a build system designed for OCaml projects only. It Jbuilder is a build system designed for OCaml/Reason projects only. It
focuses on providing the user with a consistent experience and takes focuses on providing the user with a consistent experience and takes
care of most of the low-level details of OCaml compilation. All you care of most of the low-level details of OCaml compilation. All you
have to do is provide a description of your project and Jbuilder will have to do is provide a description of your project and Jbuilder will

View File

@ -7,8 +7,8 @@ instead.
* Intro * Intro
Jbuilder is a build system for OCaml. It is not intended as a Jbuilder is a build system for OCaml and Reason. It is not intended as
completely generic build system that is able to build any given a completely generic build system that is able to build any given
project in any language. On the contrary, it makes lots of choices in project in any language. On the contrary, it makes lots of choices in
order to encourage a consistent development style. order to encourage a consistent development style.
@ -287,13 +287,13 @@ the library and you are free to expose only the modules you want.
library. This is used by tools that list installed libraries library. This is used by tools that list installed libraries
- =(modules <modules>)= specifies what modules are part of the - =(modules <modules>)= specifies what modules are part of the
library. By default Jbuilder will use all the .ml files in the same library. By default Jbuilder will use all the .ml/.re files in the
directory as the =jbuild= file. This include ones that are present same directory as the =jbuild= file. This include ones that are
in the file system as well as ones generated by user rules. You can present in the file system as well as ones generated by user
restrict this list by using a =(modules <modules>)= field. =<modules>= rules. You can restrict this list by using a =(modules <modules>)=
uses the [[Ordered set language][ordered set language]] where elements are module names and don't field. =<modules>= uses the [[Ordered set language][ordered set language]] where elements are
need to start with a uppercase letter. For instance to exclude module module names and don't need to start with a uppercase letter. For
=Foo=: =(modules (:standard \ foo))= instance to exclude module =Foo=: =(modules (:standard \ foo))=
- =(libraries (<library-dependencies>))= is used to specify the - =(libraries (<library-dependencies>))= is used to specify the
dependencies of the library. See the [[Library dependencies][section about library dependencies of the library. See the [[Library dependencies][section about library