diff options
author | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-07-08 10:58:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-08 10:58:07 -0700 |
commit | 78f1ef85fd6bf663b7a7d9d06f731f7ce9a6f629 (patch) | |
tree | dc375d803560ab20f86da49a6c8bbd89fd1ac7b5 /docs/markdown | |
parent | 2428b388db6eab8d450b1daee20c4cdb0bb88a65 (diff) | |
download | meson-78f1ef85fd6bf663b7a7d9d06f731f7ce9a6f629.zip meson-78f1ef85fd6bf663b7a7d9d06f731f7ce9a6f629.tar.gz meson-78f1ef85fd6bf663b7a7d9d06f731f7ce9a6f629.tar.bz2 |
Add missing method on external library object: type_name() (#3845)
For some reason this was missing, but it should've always existed
since cc.find_library() returns an object that is internally an
ExternalDependency instance.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-manual.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index df8531c..e3ae111 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -2045,6 +2045,9 @@ library. This object has the following methods: - `found` which returns whether the library was found. + - `type_name()` (*added 0.48.0*) which returns a string describing + the type of the dependency, which will be `library` in this case. + - `partial_dependency(compile_args : false, link_args : false, links : false, includes : false, source : false)` (*added 0.46.0*) returns a new dependency object with the same name, version, found status, |