diff options
author | TheQwertiest <qwertiest@mail.ru> | 2020-06-15 18:36:08 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-06-18 17:47:10 +0300 |
commit | 96609da8d26fc05be8845c1edf05c8aa38af047d (patch) | |
tree | b5e5dfdf414d9f9efac2c0743cc211082ef34498 /docs/markdown/Design-rationale.md | |
parent | e191cbf6e990caa0e912996977584909aab21da8 (diff) | |
download | meson-96609da8d26fc05be8845c1edf05c8aa38af047d.zip meson-96609da8d26fc05be8845c1edf05c8aa38af047d.tar.gz meson-96609da8d26fc05be8845c1edf05c8aa38af047d.tar.bz2 |
docs: replaced `ninja` with appropriate `meson` commands [skip ci]
Diffstat (limited to 'docs/markdown/Design-rationale.md')
-rw-r--r-- | docs/markdown/Design-rationale.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Design-rationale.md b/docs/markdown/Design-rationale.md index 57aaee4..7121192 100644 --- a/docs/markdown/Design-rationale.md +++ b/docs/markdown/Design-rationale.md @@ -223,11 +223,11 @@ add_test('test library', exe) ``` First we build a shared library named foobar. It is marked -installable, so running `ninja install` installs it to the library +installable, so running `meson install` installs it to the library directory (the system knows which one so the user does not have to care). Then we build a test executable which is linked against the library. It will not be installed, but instead it is added to the list -of unit tests, which can be run with the command `ninja test`. +of unit tests, which can be run with the command `meson test`. Above we mentioned precompiled headers as a feature not supported by other build systems. Here's how you would use them. |