From 610509e0e69f8808443c0da2df701adda6185d7d Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 27 May 2010 21:03:20 +0200 Subject: Added missing FindPLIST.cmake file --- Modules/FindPLIST.cmake | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Modules/FindPLIST.cmake diff --git a/Modules/FindPLIST.cmake b/Modules/FindPLIST.cmake new file mode 100644 index 0000000..d51aa74 --- /dev/null +++ b/Modules/FindPLIST.cmake @@ -0,0 +1,31 @@ +# - Try to find libplist +# Once done, this will define +# +# PLIST_FOUND - system has libplist +# PLIST_INCLUDE_DIRS - the libplist include directories +# PLIST_LIBRARIES - link these to use libplist + +include(LibFindMacros) + +# Dependencies + +# Use pkg-config to get hints about paths +libfind_pkg_check_modules(PLIST_PKGCONF libplist >= 0.15) + +# Include dir +find_path(PLIST_INCLUDE_DIR + NAMES plist/plist.h + PATHS ${PLIST_PKGCONF_INCLUDE_DIRS} +) + +# Finally the library itself +find_library(PLIST_LIBRARY + NAMES plist + PATHS ${PLIST_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 that this lib depends on. +set(PLIST_PROCESS_INCLUDES PLIST_INCLUDE_DIR) +set(PLIST_PROCESS_LIBS PLIST_LIBRARY) +libfind_process(PLIST) -- cgit v1.1-32-gdbae