File: FindPangoCairo.cmake

package info (click to toggle)
performous 1.1%2Bgit20181118-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,736 kB
  • sloc: cpp: 30,008; ansic: 2,751; sh: 801; xml: 464; python: 374; makefile: 36
file content (35 lines) | stat: -rw-r--r-- 1,068 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# - Try to find PangoCairo
# Once done, this will define
#
#  PangoCairo_FOUND - system has Pango
#  PangoCairo_INCLUDE_DIRS - the Pango include directories
#  PangoCairo_LIBRARIES - link these to use Pango

include(LibFindMacros)

# Dependencies
libfind_package(PangoCairo Pango)
libfind_package(PangoCairo Cairo)

# Use pkg-config to get hints about paths
libfind_pkg_check_modules(PangoCairo_PKGCONF pangocairo)

# Include dir
find_path(PangoCairo_INCLUDE_DIR
  NAMES pango/pangocairo.h
  HINTS ${PangoCairo_PKGCONF_INCLUDE_DIRS}
  PATH_SUFFIXES pango-1.0
)

# Finally the library itself
find_library(PangoCairo_LIBRARY
  NAMES pangocairo-1.0
  HINTS ${PangoCairo_PKGCONF_LIBRARY_DIRS}
)

# Set the include dir variables and the libraries and let libfind_process do the rest.
# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
set(PangoCairo_PROCESS_INCLUDES PangoCairo_INCLUDE_DIR Pango_INCLUDE_DIR Cairo_INCLUDE_DIR)
set(PangoCairo_PROCESS_LIBS PangoCairo_LIBRARY Pango_LIBRARY Cairo_LIBRARY)
libfind_process(PangoCairo)