From 35ef236c43cb196b706d6b3e62022c1b94b016f0 Mon Sep 17 00:00:00 2001 From: Iñigo Martínez Date: Thu, 31 Aug 2017 20:38:15 +0200 Subject: 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. --- docs/markdown/Dependencies.md | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'docs/markdown') diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index 9050696be..187c4fe4b 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 -- cgit v1.2.3