diff options
author | Iñigo MartÃnez <inigomartinez@gmail.com> | 2017-08-31 20:38:15 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-31 21:38:15 +0300 |
commit | 35ef236c43cb196b706d6b3e62022c1b94b016f0 (patch) | |
tree | 388b5986df76b133b3372f870c53a6f24c8798bf /docs/markdown | |
parent | 5f0a91baa51a0403eb6db51d51e96430aaa1b716 (diff) | |
download | meson-35ef236c43cb196b706d6b3e62022c1b94b016f0.zip meson-35ef236c43cb196b706d6b3e62022c1b94b016f0.tar.gz meson-35ef236c43cb196b706d6b3e62022c1b94b016f0.tar.bz2 |
add support for cups dependencies (#2255)
* add support for cups dependencies
libcups has its own cups-config tool rather than using pkg-config.
This adds support for cups-config, based on pcap-config and
sdl2-config implementations.
This change also includes the unit test case and documentation for
cups dependency object implementation, and libcups2 dep to CI image.
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 9050696..187c4fe 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -132,6 +132,16 @@ automatically: pcap_dep = dependency('pcap', version : '>=1.0') ``` +## CUPS + +The cups library does not ship with pkg-config at the time or writing +but instead it has its own `cups-config` util. Meson will use it +automatically: + +```meson +cups_dep = dependency('cups', version : '>=1.4') +``` + ## Declaring your own You can declare your own dependency objects that can be used |