diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-28 22:01:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 22:01:00 +0200 |
commit | 746e70c0da73c3d20cb4456a8111355ad2202522 (patch) | |
tree | d9b6277bbabebd0d0f8fef8fb09a10f8f265b6b7 /docs/markdown/Reference-manual.md | |
parent | 8a1a866c68dc432c4576221fdaf377490dba4925 (diff) | |
parent | a52c22dc0678c4f2d91a20016277e9880935ca5c (diff) | |
download | meson-746e70c0da73c3d20cb4456a8111355ad2202522.zip meson-746e70c0da73c3d20cb4456a8111355ad2202522.tar.gz meson-746e70c0da73c3d20cb4456a8111355ad2202522.tar.bz2 |
Merge pull request #2512 from dcbaker/wip/config-tool-variables
Add method to get values from config tool based dependency
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 0f00203..424ab58 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1614,6 +1614,10 @@ an external dependency with the following methods: pkg-config variable specified, or, if invoked on a non pkg-config dependency, error out + - `get_configtool_variable(varname)` (*Added 0.44.0*) will get the + command line argument from the config tool (with `--` prepended), or, + if invoked on a non config-tool dependency, error out. + - `type_name()` which returns a string describing the type of the dependency, the most common values are `internal` for deps created with `declare_dependencies` and `pkgconfig` for system dependencies |