From 81f0eef2df495872af38a04a4fd792a2b9058c6e Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 2 Mar 2019 18:17:16 +0200 Subject: [PATCH] Add table for dependency method types. [skip ci] --- docs/markdown/Reference-tables.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 |