diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-02 18:17:16 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-04 11:25:50 +0200 |
commit | 81f0eef2df495872af38a04a4fd792a2b9058c6e (patch) | |
tree | 9a67bc17255b238c1b603ad77e03bf97247bb462 /docs | |
parent | 65487f1599eff87dba22b83e0519a21a31dd1bba (diff) | |
download | meson-81f0eef2df495872af38a04a4fd792a2b9058c6e.zip meson-81f0eef2df495872af38a04a4fd792a2b9058c6e.tar.gz meson-81f0eef2df495872af38a04a4fd792a2b9058c6e.tar.bz2 |
Add table for dependency method types. [skip ci]
Diffstat (limited to 'docs')
-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 a4bef3a..d3a6815 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 | |