From f44ecaa4f27e7538ddcad66d40e543bffa2d2d86 Mon Sep 17 00:00:00 2001 From: manuel Date: Sun, 4 Jun 2017 16:57:49 +0200 Subject: sync with upstream --- project/cmake/modules/FindPlist.cmake | 58 ----------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 project/cmake/modules/FindPlist.cmake (limited to 'project/cmake/modules/FindPlist.cmake') diff --git a/project/cmake/modules/FindPlist.cmake b/project/cmake/modules/FindPlist.cmake deleted file mode 100644 index d7a6c48..0000000 --- a/project/cmake/modules/FindPlist.cmake +++ /dev/null @@ -1,58 +0,0 @@ -#.rst: -# FindPlist -# --------- -# Finds the Plist library -# -# This will will define the following variables:: -# -# PLIST_FOUND - system has Plist library -# PLIST_INCLUDE_DIRS - the Plist library include directory -# PLIST_LIBRARIES - the Plist libraries -# PLIST_DEFINITIONS - the Plist compile definitions -# -# and the following imported targets:: -# -# Plist::Plist - The Plist library - -if(PKG_CONFIG_FOUND) - pkg_check_modules(PC_PLIST libplist QUIET) -endif() - -find_path(PLIST_INCLUDE_DIR plist/plist.h - PATHS ${PC_PLIST_INCLUDEDIR}) - -set(PLIST_VERSION ${PC_PLIST_VERSION}) - -include(FindPackageHandleStandardArgs) -if(NOT WIN32) - find_library(PLIST_LIBRARY NAMES plist - PATHS ${PC_PLIST_LIBDIR}) - - find_package_handle_standard_args(PLIST - REQUIRED_VARS PLIST_LIBRARY PLIST_INCLUDE_DIR - VERSION_VAR PLIST_VERSION) -else() - # Dynamically loaded DLL - find_package_handle_standard_args(PLIST - REQUIRED_VARS PLIST_INCLUDE_DIR - VERSION_VAR PLIST_VERSION) -endif() - -if(PLIST_FOUND) - set(PLIST_LIBRARIES ${PLIST_LIBRARY}) - set(PLIST_INCLUDE_DIRS ${PLIST_INCLUDE_DIR}) - set(PLIST_DEFINITIONS -DHAVE_LIBPLIST=1) - - if(NOT TARGET Plist::Plist) - add_library(Plist::Plist UNKNOWN IMPORTED) - if(PLIST_LIBRARY) - set_target_properties(Plist::Plist PROPERTIES - IMPORTED_LOCATION "${PLIST_LIBRARY}") - endif() - set_target_properties(Plist::Plist PROPERTIES - INTERFACE_INCLUDE_DIRECTORIES "${PLIST_INCLUDE_DIR}" - INTERFACE_COMPILE_DEFINITIONS HAVE_LIBPLIST=1) - endif() -endif() - -mark_as_advanced(PLIST_INCLUDE_DIR PLIST_LIBRARY) -- cgit v1.2.3