aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Dependencies.md
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2018-09-23 15:23:39 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2018-10-03 01:22:59 +0300
commit46a42a69a6a761b3d058ca151028ad9b9f497281 (patch)
tree257da214573a063def89d02b94942c651f12c113 /docs/markdown/Dependencies.md
parent386e5b876fa1395ec2699c9895ac93e4eaf680ad (diff)
downloadmeson-46a42a69a6a761b3d058ca151028ad9b9f497281.zip
meson-46a42a69a6a761b3d058ca151028ad9b9f497281.tar.gz
meson-46a42a69a6a761b3d058ca151028ad9b9f497281.tar.bz2
Add custom libgcrypt dependency using libgcrypt-config
Fixes #3563
Diffstat (limited to 'docs/markdown/Dependencies.md')
-rw-r--r--docs/markdown/Dependencies.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md
index 08ff1e2..c853677 100644
--- a/docs/markdown/Dependencies.md
+++ b/docs/markdown/Dependencies.md
@@ -165,15 +165,16 @@ wmf_dep = dependency('libwmf', method : 'config-tool')
## Dependencies using config tools
[CUPS](#cups), [LLVM](#llvm), [pcap](#pcap), [WxWidgets](#wxwidgets),
-[libwmf](#libwmf), and GnuStep either do not provide pkg-config
+[libwmf](#libwmf), [GCrypt](#libgcrypt), and GnuStep either do not provide pkg-config
modules or additionally can be detected via a config tool
-(cups-config, llvm-config, etc). Meson has native support for these
+(cups-config, llvm-config, libgcrypt-config, etc). Meson has native support for these
tools, and they can be found like other dependencies:
```meson
pcap_dep = dependency('pcap', version : '>=1.0')
cups_dep = dependency('cups', version : '>=1.4')
llvm_dep = dependency('llvm', version : '>=4.0')
+libgcrypt_dep = dependency('libgcrypt', version: '>= 1.8')
```
## AppleFrameworks
@@ -309,6 +310,12 @@ The `language` keyword may used.
`method` may be `auto`, `config-tool` or `pkg-config`.
+## libgcrypt
+
+*(added 0.49.0)*
+
+`method` may be `auto`, `config-tool` or `pkg-config`.
+
## Python3
Python3 is handled specially by meson: