diff options
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Dependencies.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index c3f007f..3aa82b4 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -153,6 +153,16 @@ automatically: cups_dep = dependency('cups', version : '>=1.4') ``` +## LibWMF + +The libwmf library does not ship with pkg-config at the time or writing +but instead it has its own `libwmf-config` util. Meson will use it +automatically: + +```meson +libwmf_dep = dependency('libwmf', version : '>=0.2.8') +``` + ## Declaring your own You can declare your own dependency objects that can be used |