diff options
Diffstat (limited to 'Source/cmake/FindPango.cmake')
| -rw-r--r-- | Source/cmake/FindPango.cmake | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Source/cmake/FindPango.cmake b/Source/cmake/FindPango.cmake new file mode 100644 index 0000000..0df547f --- /dev/null +++ b/Source/cmake/FindPango.cmake @@ -0,0 +1,34 @@ +# - Try to find Pango +# Once done, this will define +# +# Pango_FOUND - system has Pango +# Pango_INCLUDE_DIRS - the Pango include directories +# Pango_LIBRARIES - link these to use Pango + +include(LibFindMacros) + +# Dependencies +libfind_package(Pango Freetype) + +# Use pkg-config to get hints about paths +libfind_pkg_check_modules(Pango_PKGCONF pango) + +# Include dir +find_path(Pango_INCLUDE_DIR + NAMES pango/pango.h + PATHS ${Pango_PKGCONF_INCLUDE_DIRS} + PATH_SUFFIXES pango-1.0 +) + +# Finally the library itself +find_library(Pango_LIBRARY + NAMES pango-1.0 + PATHS ${Pango_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(Pango_PROCESS_INCLUDES Pango_INCLUDE_DIR Freetype_INCLUDE_DIRS) +set(Pango_PROCESS_LIBS Pango_LIBRARY Freetype_LIBRARIES) +libfind_process(Pango) + |
