diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2017-12-14 14:33:28 -0500 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2017-12-20 19:09:08 -0500 |
commit | f9c9e80d4a1b351985a6c6d5e2a56e0686a98592 (patch) | |
tree | fa6c85ec2506f29a275bf31ae2ca39da3e8a331d /docs/markdown | |
parent | 49977686b57685decfeda726958c33610710eb2e (diff) | |
download | meson-f9c9e80d4a1b351985a6c6d5e2a56e0686a98592.zip meson-f9c9e80d4a1b351985a6c6d5e2a56e0686a98592.tar.gz meson-f9c9e80d4a1b351985a6c6d5e2a56e0686a98592.tar.bz2 |
pkgconfig: Update documentation
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Pkgconfig-module.md | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/docs/markdown/Pkgconfig-module.md b/docs/markdown/Pkgconfig-module.md index 7f767f1..cbe01b4 100644 --- a/docs/markdown/Pkgconfig-module.md +++ b/docs/markdown/Pkgconfig-module.md @@ -23,9 +23,16 @@ keyword arguments. - `install_dir` the directory to install to, defaults to the value of option `libdir` followed by `/pkgconfig` - `libraries` a list of built libraries (usually results of - shared_library) that the user needs to link against -- `libraries_private` list of strings to put in the - `Libraries.private` field + shared_library) that the user needs to link against. Arbitraty strings can + also be provided and they will be added into the `Libs` field. Since 0.45.0 + dependencies of built libraries will be automatically added to `Libs.private` + field. If a dependency is provided by pkg-config then it will be added in + `Requires.private` instead. Other type of dependency objects can also be passed + and will result in their `link_args` and `compile_args` to be added to `Libs` + and `Cflags` fields. +- `libraries_private` list of built libraries or strings to put in the + `Libs.private` field. Since 0.45.0 it can also contain dependency objects, + their `link_args` will be added to `Libs.private`. - `name` the name of this library - `subdirs` which subdirs of `include` should be added to the header search path, for example if you install headers into |