diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 13:20:59 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 16:19:59 +0000 |
commit | f72ee8e742a171db74ed32b54b85953b8dfe1d77 (patch) | |
tree | 80e015f57b8bfc3c0a0fccb6b0d4ef4d602c0a0d /docs/markdown/FAQ.md | |
parent | 4f8cecca9733588b083dba8488143fa1ffb0e495 (diff) | |
download | meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.zip meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.gz meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.bz2 |
Rewrap long text lines in docs. [skip ci]
Diffstat (limited to 'docs/markdown/FAQ.md')
-rw-r--r-- | docs/markdown/FAQ.md | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/docs/markdown/FAQ.md b/docs/markdown/FAQ.md index b0db361..bd2316f 100644 --- a/docs/markdown/FAQ.md +++ b/docs/markdown/FAQ.md @@ -61,10 +61,10 @@ Instead of specifying files explicitly, people seem to want to do this: executable('myprog', sources : '*.cpp') # This does NOT work! ``` -Meson does not support this syntax and the reason for this is -simple. This can not be made both reliable and fast. By reliable we -mean that if the user adds a new source file to the subdirectory, -Meson should detect that and make it part of the build automatically. +Meson does not support this syntax and the reason for this is simple. +This can not be made both reliable and fast. By reliable we mean that +if the user adds a new source file to the subdirectory, Meson should +detect that and make it part of the build automatically. One of the main requirements of Meson is that it must be fast. This means that a no-op build in a tree of 10 000 source files must take no @@ -396,12 +396,14 @@ advantages: so specifying `libfoo.a` instead of `foo.lib` does not change the workflow, and is an improvement since it's less ambiguous. -If, for some reason, you really need your project to output static libraries of -the form `foo.lib` when building with MSVC, you can set the +If, for some reason, you really need your project to output static +libraries of the form `foo.lib` when building with MSVC, you can set +the [`name_prefix:`](https://mesonbuild.com/Reference-manual.html#library) -kwarg to `''` and the [`name_suffix:`](https://mesonbuild.com/Reference-manual.html#library) -kwarg to `'lib'`. To get the default behaviour for each, you can either not -specify the kwarg, or pass `[]` (an empty array) to it. +kwarg to `''` and the +[`name_suffix:`](https://mesonbuild.com/Reference-manual.html#library) +kwarg to `'lib'`. To get the default behaviour for each, you can +either not specify the kwarg, or pass `[]` (an empty array) to it. ## Do I need to add my headers to the sources list like in Autotools? |