FindXMLRPC.cmake 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. #.rst:
  2. # FindXMLRPC
  3. # ----------
  4. #
  5. # Find xmlrpc
  6. #
  7. # Find the native XMLRPC headers and libraries.
  8. #
  9. # ::
  10. #
  11. # XMLRPC_INCLUDE_DIRS - where to find xmlrpc.h, etc.
  12. # XMLRPC_LIBRARIES - List of libraries when using xmlrpc.
  13. # XMLRPC_FOUND - True if xmlrpc found.
  14. #
  15. # XMLRPC modules may be specified as components for this find module.
  16. # Modules may be listed by running "xmlrpc-c-config". Modules include:
  17. #
  18. # ::
  19. #
  20. # c++ C++ wrapper code
  21. # libwww-client libwww-based client
  22. # cgi-server CGI-based server
  23. # abyss-server ABYSS-based server
  24. #
  25. # Typical usage:
  26. #
  27. # ::
  28. #
  29. # find_package(XMLRPC REQUIRED libwww-client)
  30. #=============================================================================
  31. # Copyright 2001-2009 Kitware, Inc.
  32. #
  33. # Distributed under the OSI-approved BSD License (the "License");
  34. # see accompanying file Copyright.txt for details.
  35. #
  36. # This software is distributed WITHOUT ANY WARRANTY; without even the
  37. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  38. # See the License for more information.
  39. #=============================================================================
  40. # (To distribute this file outside of CMake, substitute the full
  41. # License text for the above reference.)
  42. # First find the config script from which to obtain other values.
  43. find_program(XMLRPC_C_CONFIG NAMES xmlrpc-c-config)
  44. # Check whether we found anything.
  45. if(XMLRPC_C_CONFIG)
  46. set(XMLRPC_FOUND 1)
  47. else()
  48. set(XMLRPC_FOUND 0)
  49. endif()
  50. # Lookup the include directories needed for the components requested.
  51. if(XMLRPC_FOUND)
  52. # Use the newer EXECUTE_PROCESS command if it is available.
  53. if(COMMAND EXECUTE_PROCESS)
  54. execute_process(
  55. COMMAND ${XMLRPC_C_CONFIG} ${XMLRPC_FIND_COMPONENTS} --cflags
  56. OUTPUT_VARIABLE XMLRPC_C_CONFIG_CFLAGS
  57. OUTPUT_STRIP_TRAILING_WHITESPACE
  58. RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
  59. )
  60. else()
  61. exec_program(${XMLRPC_C_CONFIG} ARGS "${XMLRPC_FIND_COMPONENTS} --cflags"
  62. OUTPUT_VARIABLE XMLRPC_C_CONFIG_CFLAGS
  63. RETURN_VALUE XMLRPC_C_CONFIG_RESULT
  64. )
  65. endif()
  66. # Parse the include flags.
  67. if("${XMLRPC_C_CONFIG_RESULT}" STREQUAL "0")
  68. # Convert the compile flags to a CMake list.
  69. string(REGEX REPLACE " +" ";"
  70. XMLRPC_C_CONFIG_CFLAGS "${XMLRPC_C_CONFIG_CFLAGS}")
  71. # Look for -I options.
  72. set(XMLRPC_INCLUDE_DIRS)
  73. foreach(flag ${XMLRPC_C_CONFIG_CFLAGS})
  74. if("${flag}" MATCHES "^-I(.+)")
  75. file(TO_CMAKE_PATH "${CMAKE_MATCH_1}" DIR)
  76. list(APPEND XMLRPC_INCLUDE_DIRS "${DIR}")
  77. endif()
  78. endforeach()
  79. else()
  80. message("Error running ${XMLRPC_C_CONFIG}: [${XMLRPC_C_CONFIG_RESULT}]")
  81. set(XMLRPC_FOUND 0)
  82. endif()
  83. endif()
  84. # Lookup the libraries needed for the components requested.
  85. if(XMLRPC_FOUND)
  86. # Use the newer EXECUTE_PROCESS command if it is available.
  87. if(COMMAND EXECUTE_PROCESS)
  88. execute_process(
  89. COMMAND ${XMLRPC_C_CONFIG} ${XMLRPC_FIND_COMPONENTS} --libs
  90. OUTPUT_VARIABLE XMLRPC_C_CONFIG_LIBS
  91. OUTPUT_STRIP_TRAILING_WHITESPACE
  92. RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
  93. )
  94. else()
  95. exec_program(${XMLRPC_C_CONFIG} ARGS "${XMLRPC_FIND_COMPONENTS} --libs"
  96. OUTPUT_VARIABLE XMLRPC_C_CONFIG_LIBS
  97. RETURN_VALUE XMLRPC_C_CONFIG_RESULT
  98. )
  99. endif()
  100. # Parse the library names and directories.
  101. if("${XMLRPC_C_CONFIG_RESULT}" STREQUAL "0")
  102. string(REGEX REPLACE " +" ";"
  103. XMLRPC_C_CONFIG_LIBS "${XMLRPC_C_CONFIG_LIBS}")
  104. # Look for -L flags for directories and -l flags for library names.
  105. set(XMLRPC_LIBRARY_DIRS)
  106. set(XMLRPC_LIBRARY_NAMES)
  107. foreach(flag ${XMLRPC_C_CONFIG_LIBS})
  108. if("${flag}" MATCHES "^-L(.+)")
  109. file(TO_CMAKE_PATH "${CMAKE_MATCH_1}" DIR)
  110. list(APPEND XMLRPC_LIBRARY_DIRS "${DIR}")
  111. elseif("${flag}" MATCHES "^-l(.+)")
  112. list(APPEND XMLRPC_LIBRARY_NAMES "${CMAKE_MATCH_1}")
  113. endif()
  114. endforeach()
  115. # Search for each library needed using the directories given.
  116. foreach(name ${XMLRPC_LIBRARY_NAMES})
  117. # Look for this library.
  118. find_library(XMLRPC_${name}_LIBRARY
  119. NAMES ${name}
  120. HINTS ${XMLRPC_LIBRARY_DIRS}
  121. )
  122. mark_as_advanced(XMLRPC_${name}_LIBRARY)
  123. # If any library is not found then the whole package is not found.
  124. if(NOT XMLRPC_${name}_LIBRARY)
  125. set(XMLRPC_FOUND 0)
  126. endif()
  127. # Build an ordered list of all the libraries needed.
  128. set(XMLRPC_LIBRARIES ${XMLRPC_LIBRARIES} "${XMLRPC_${name}_LIBRARY}")
  129. endforeach()
  130. else()
  131. message("Error running ${XMLRPC_C_CONFIG}: [${XMLRPC_C_CONFIG_RESULT}]")
  132. set(XMLRPC_FOUND 0)
  133. endif()
  134. endif()
  135. # Report the results.
  136. if(NOT XMLRPC_FOUND)
  137. set(XMLRPC_DIR_MESSAGE
  138. "XMLRPC was not found. Make sure the entries XMLRPC_* are set.")
  139. if(NOT XMLRPC_FIND_QUIETLY)
  140. message(STATUS "${XMLRPC_DIR_MESSAGE}")
  141. else()
  142. if(XMLRPC_FIND_REQUIRED)
  143. message(FATAL_ERROR "${XMLRPC_DIR_MESSAGE}")
  144. endif()
  145. endif()
  146. endif()