diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-04-25 10:26:22 +1000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-04-28 22:36:15 +0300 |
commit | f3be687cbbfd1ff25c7ec4ffe8ba4adfee9a6579 (patch) | |
tree | cf036d14380b9d439506aeaebc08c89468ea2647 | |
parent | fbbd7289db32b50a4bb6044b064310d03cee9b7e (diff) | |
download | meson-f3be687cbbfd1ff25c7ec4ffe8ba4adfee9a6579.tar.gz |
Use 'builddir' instead of 'build' in the README
Clarifies that this is really just a directory, not a command.
https://github.com/mesonbuild/meson/issues/1560
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -60,11 +60,11 @@ You can omit either of the two directories, and Meson will substitute the current directory and autodetect what you mean. This allows you to do things like this: -`cd source_root; mkdir build; cd build; meson ..` +`cd source_root; mkdir builddir; cd builddir; meson ..` or -`cd source_root; mkdir build; meson build` +`cd source_root; mkdir builddir; meson builddir` To compile, cd into your build directory and type `ninja`. To run unit tests, type `ninja test`. |