diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-02 18:17:16 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-02 18:17:23 +0200 |
commit | 1a6e4a7390921b37d270bd1886ce1bfe3abfe4ec (patch) | |
tree | 46b1361349acda70a230c14438d52c7ac104508c | |
parent | 7199cd2095127770600b1c54eea53b044ce462c3 (diff) | |
download | meson-deptable.tar.gz |
Add table for dependency method types. [skip ci]deptable
-rw-r--r-- | docs/markdown/Reference-tables.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index a4bef3a21..d3a681540 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -196,3 +196,18 @@ which are supported by MSVC, GCC, Clang, and other compilers. |----------------------| | dllexport | | dllimport | + + +## Dependency lookup methods + +These are the values that can be passed to `dependency` function's +`method` keyword argument. + +| Name | Comment | +| ----- | ------- | +| auto | Automatic method selection | +| pkg-config | Use Pkg-Config | +| cmake | Look up as a CMake module | +| config-tool | Use a custom dep tool such as `cups-config` | +| system | System provided (e.g. OpenGL) | +| extraframework | A macOS/iOS framework | |