diff options
author | Félix Piédallu <felix@piedallu.me> | 2017-10-30 11:44:34 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-10-31 01:05:46 +0200 |
commit | bb84c1d1092465738efabc23342cb9fa943ccb77 (patch) | |
tree | 3cab442098b3fe97526de4202deb6054623152d9 /docs/markdown | |
parent | 02bea7d5bf5c98c586e59e60357fc5ca11826172 (diff) | |
download | meson-bb84c1d1092465738efabc23342cb9fa943ccb77.zip meson-bb84c1d1092465738efabc23342cb9fa943ccb77.tar.gz meson-bb84c1d1092465738efabc23342cb9fa943ccb77.tar.bz2 |
Add LibWmf as a specified dependency, and associated tests.
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 |