diff options
author | rc-matthew-l-weber <matthew.weber@rockwellcollins.com> | 2019-10-27 17:07:50 -0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-10-28 00:07:50 +0200 |
commit | 6e18e5b0b3dfbb359a4ef0410dce097913e00efa (patch) | |
tree | f09929c0177a55492054fbffd9fd377befb0ba82 /docs/markdown | |
parent | 2b6c997e33e0864fd9bd462e913323b6711f644a (diff) | |
download | meson-6e18e5b0b3dfbb359a4ef0410dce097913e00efa.zip meson-6e18e5b0b3dfbb359a4ef0410dce097913e00efa.tar.gz meson-6e18e5b0b3dfbb359a4ef0410dce097913e00efa.tar.bz2 |
docs: clarify --default-library is for internal libraries [skip ci]
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-manual.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 832ceda..3fdd9a9 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1150,7 +1150,10 @@ You should use this instead of [`shared_library`](#shared_library), [`static_library`](#static_library) or [`both_libraries`](#both_libraries) most of the time. This allows you to toggle your entire project (including subprojects) from shared to -static with only one option. +static with only one option. This option applies to libraries being +built internal to the entire project. For external dependencies, the +default library type prefered is shared. This can be adapted on a per +library basis using the [dependency()](#dependency)) `static` keyword. The keyword arguments for this are the same as for [`executable`](#executable) with the following additions: |