dune/example/sample-projects/hello_world
Jérémie Dimino 325584adfc
Renaming to Dune (#721)
- install two identical binaries: jbuilder and dune
- rename the man pages to dune-*
- change the name in man pages
- change the name of libraries
- add support for dune-project files and add a dune-project file
- add support for dune-workspace files
- start updating the manual
- update the tests
2018-05-02 12:56:12 +01:00
..
bin Added an example 2017-03-21 14:28:23 +00:00
lib Added an example 2017-03-21 14:28:23 +00:00
test Make the testsuite pass on Windows 2017-09-22 01:59:40 +01:00
README.org Added an example 2017-03-21 14:28:23 +00:00
hello_world.opam Added an example 2017-03-21 14:28:23 +00:00
run.t Renaming to Dune (#721) 2018-05-02 12:56:12 +01:00

README.org

This project is called hello_world. It defines one library called hello_world and one executable called hello_world.

The library is defined in lib and the executable in bin. It also defines a test in test.

At the toplevel of the project, there is a hello_world.opam file. This file is required so that jbuilder knows that this is the hello_world project.

To build everything that is meant to be installed in this project, type:

$ jbuilder build @install

To run the tests, type:

$ jbuilder runtest