diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-31 18:00:24 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-31 18:00:24 +0200 |
commit | 27abed4a707ba69b019822a0a0e3c045542b4443 (patch) | |
tree | b32990d77af51d03e98c01a3a1af78def756b26f /docs/markdown/Generating-sources.md | |
parent | 4bde7f31ae5fa162a514f3d876d38943fcdff406 (diff) | |
download | meson-capitalization.zip meson-capitalization.tar.gz meson-capitalization.tar.bz2 |
Capitalize "Meson" consistently as it is a proper name. [skip ci]capitalization
Diffstat (limited to 'docs/markdown/Generating-sources.md')
-rw-r--r-- | docs/markdown/Generating-sources.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index 44e36b7..c09819f 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -76,14 +76,14 @@ executable('myexe', ['main.c', foo_h], link_with : libfoo) Each target that depends on a generated header should add that header to it's sources, as seen above with `libfoo` and `myexe`. This is -because there is no way for meson or the backend to know that `myexe` +because there is no way for Meson or the backend to know that `myexe` depends on `foo.h` just because `libfoo` does, it could be a private header. ### Generating multiple files at a time Sometimes it makes sense for a single generator to create two or more -files at a time, (perhaps a header and source file), meson has this +files at a time, (perhaps a header and source file), Meson has this case covered as well. `custom_target`s can be indexed like a list to get each output file separately. The order is the same as the order of the output argument to `custom_target` |