diff options
author | Michael Brockus <55331536+michaelbadcrumble@users.noreply.github.com> | 2020-03-07 07:19:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-07 17:19:15 +0200 |
commit | a0ce13d4e9bb066da4fe961215dee89019026bff (patch) | |
tree | bef30ff4c20bd71123e3e8f59f1b6054891cc208 /README.md | |
parent | 6ac40539a3fca9de099d4d2dd348423ec045ff65 (diff) | |
download | meson-a0ce13d4e9bb066da4fe961215dee89019026bff.zip meson-a0ce13d4e9bb066da4fe961215dee89019026bff.tar.gz meson-a0ce13d4e9bb066da4fe961215dee89019026bff.tar.bz2 |
add setup keyword in example commands [skip ci]
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -49,7 +49,7 @@ and that these two are different. In your source root must exist a file called `meson.build`. To generate the build system run this command: -`meson <source directory> <build directory>` +`meson setup <source directory> <build directory>` Depending on how you obtained Meson the command might also be called `meson.py` instead of plain `meson`. In the rest of this document we @@ -61,7 +61,7 @@ do things like this: ```console cd <source root> -meson builddir +meson setup builddir ``` To compile, cd into your build directory and type `ninja`. To run unit |