FindLibXml2.cmake 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #.rst:
  2. # FindLibXml2
  3. # -----------
  4. #
  5. # Try to find the LibXml2 xml processing library
  6. #
  7. # Once done this will define
  8. #
  9. # ::
  10. #
  11. # LIBXML2_FOUND - System has LibXml2
  12. # LIBXML2_INCLUDE_DIR - The LibXml2 include directory
  13. # LIBXML2_LIBRARIES - The libraries needed to use LibXml2
  14. # LIBXML2_DEFINITIONS - Compiler switches required for using LibXml2
  15. # LIBXML2_XMLLINT_EXECUTABLE - The XML checking tool xmllint coming with LibXml2
  16. # LIBXML2_VERSION_STRING - the version of LibXml2 found (since CMake 2.8.8)
  17. #=============================================================================
  18. # Copyright 2006-2009 Kitware, Inc.
  19. # Copyright 2006 Alexander Neundorf <neundorf@kde.org>
  20. #
  21. # Distributed under the OSI-approved BSD License (the "License");
  22. # see accompanying file Copyright.txt for details.
  23. #
  24. # This software is distributed WITHOUT ANY WARRANTY; without even the
  25. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  26. # See the License for more information.
  27. #=============================================================================
  28. # (To distribute this file outside of CMake, substitute the full
  29. # License text for the above reference.)
  30. # use pkg-config to get the directories and then use these values
  31. # in the find_path() and find_library() calls
  32. find_package(PkgConfig QUIET)
  33. PKG_CHECK_MODULES(PC_LIBXML QUIET libxml-2.0)
  34. set(LIBXML2_DEFINITIONS ${PC_LIBXML_CFLAGS_OTHER})
  35. find_path(LIBXML2_INCLUDE_DIR NAMES libxml/xpath.h
  36. HINTS
  37. ${PC_LIBXML_INCLUDEDIR}
  38. ${PC_LIBXML_INCLUDE_DIRS}
  39. PATH_SUFFIXES libxml2
  40. )
  41. find_library(LIBXML2_LIBRARIES NAMES xml2 libxml2
  42. HINTS
  43. ${PC_LIBXML_LIBDIR}
  44. ${PC_LIBXML_LIBRARY_DIRS}
  45. )
  46. find_program(LIBXML2_XMLLINT_EXECUTABLE xmllint)
  47. # for backwards compat. with KDE 4.0.x:
  48. set(XMLLINT_EXECUTABLE "${LIBXML2_XMLLINT_EXECUTABLE}")
  49. if(PC_LIBXML_VERSION)
  50. set(LIBXML2_VERSION_STRING ${PC_LIBXML_VERSION})
  51. elseif(LIBXML2_INCLUDE_DIR AND EXISTS "${LIBXML2_INCLUDE_DIR}/libxml/xmlversion.h")
  52. file(STRINGS "${LIBXML2_INCLUDE_DIR}/libxml/xmlversion.h" libxml2_version_str
  53. REGEX "^#define[\t ]+LIBXML_DOTTED_VERSION[\t ]+\".*\"")
  54. string(REGEX REPLACE "^#define[\t ]+LIBXML_DOTTED_VERSION[\t ]+\"([^\"]*)\".*" "\\1"
  55. LIBXML2_VERSION_STRING "${libxml2_version_str}")
  56. unset(libxml2_version_str)
  57. endif()
  58. # handle the QUIETLY and REQUIRED arguments and set LIBXML2_FOUND to TRUE if
  59. # all listed variables are TRUE
  60. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  61. FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibXml2
  62. REQUIRED_VARS LIBXML2_LIBRARIES LIBXML2_INCLUDE_DIR
  63. VERSION_VAR LIBXML2_VERSION_STRING)
  64. mark_as_advanced(LIBXML2_INCLUDE_DIR LIBXML2_LIBRARIES LIBXML2_XMLLINT_EXECUTABLE)