FindImageMagick.cmake 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. #.rst:
  2. # FindImageMagick
  3. # ---------------
  4. #
  5. # Find the ImageMagick binary suite.
  6. #
  7. # This module will search for a set of ImageMagick tools specified as
  8. # components in the FIND_PACKAGE call. Typical components include, but
  9. # are not limited to (future versions of ImageMagick might have
  10. # additional components not listed here):
  11. #
  12. # ::
  13. #
  14. # animate
  15. # compare
  16. # composite
  17. # conjure
  18. # convert
  19. # display
  20. # identify
  21. # import
  22. # mogrify
  23. # montage
  24. # stream
  25. #
  26. #
  27. #
  28. # If no component is specified in the FIND_PACKAGE call, then it only
  29. # searches for the ImageMagick executable directory. This code defines
  30. # the following variables:
  31. #
  32. # ::
  33. #
  34. # ImageMagick_FOUND - TRUE if all components are found.
  35. # ImageMagick_EXECUTABLE_DIR - Full path to executables directory.
  36. # ImageMagick_<component>_FOUND - TRUE if <component> is found.
  37. # ImageMagick_<component>_EXECUTABLE - Full path to <component> executable.
  38. # ImageMagick_VERSION_STRING - the version of ImageMagick found
  39. # (since CMake 2.8.8)
  40. #
  41. #
  42. #
  43. # ImageMagick_VERSION_STRING will not work for old versions like 5.2.3.
  44. #
  45. # There are also components for the following ImageMagick APIs:
  46. #
  47. # ::
  48. #
  49. # Magick++
  50. # MagickWand
  51. # MagickCore
  52. #
  53. #
  54. #
  55. # For these components the following variables are set:
  56. #
  57. # ::
  58. #
  59. # ImageMagick_FOUND - TRUE if all components are found.
  60. # ImageMagick_INCLUDE_DIRS - Full paths to all include dirs.
  61. # ImageMagick_LIBRARIES - Full paths to all libraries.
  62. # ImageMagick_<component>_FOUND - TRUE if <component> is found.
  63. # ImageMagick_<component>_INCLUDE_DIRS - Full path to <component> include dirs.
  64. # ImageMagick_<component>_LIBRARIES - Full path to <component> libraries.
  65. #
  66. #
  67. #
  68. # Example Usages:
  69. #
  70. # ::
  71. #
  72. # find_package(ImageMagick)
  73. # find_package(ImageMagick COMPONENTS convert)
  74. # find_package(ImageMagick COMPONENTS convert mogrify display)
  75. # find_package(ImageMagick COMPONENTS Magick++)
  76. # find_package(ImageMagick COMPONENTS Magick++ convert)
  77. #
  78. #
  79. #
  80. # Note that the standard FIND_PACKAGE features are supported (i.e.,
  81. # QUIET, REQUIRED, etc.).
  82. #=============================================================================
  83. # Copyright 2007-2009 Kitware, Inc.
  84. # Copyright 2007-2008 Miguel A. Figueroa-Villanueva <miguelf at ieee dot org>
  85. # Copyright 2012 Rolf Eike Beer <eike@sf-mail.de>
  86. #
  87. # Distributed under the OSI-approved BSD License (the "License");
  88. # see accompanying file Copyright.txt for details.
  89. #
  90. # This software is distributed WITHOUT ANY WARRANTY; without even the
  91. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  92. # See the License for more information.
  93. #=============================================================================
  94. # (To distribute this file outside of CMake, substitute the full
  95. # License text for the above reference.)
  96. find_package(PkgConfig QUIET)
  97. #---------------------------------------------------------------------
  98. # Helper functions
  99. #---------------------------------------------------------------------
  100. function(FIND_IMAGEMAGICK_API component header)
  101. set(ImageMagick_${component}_FOUND FALSE PARENT_SCOPE)
  102. pkg_check_modules(PC_${component} QUIET ${component})
  103. find_path(ImageMagick_${component}_INCLUDE_DIR
  104. NAMES ${header}
  105. HINTS
  106. ${PC_${component}_INCLUDEDIR}
  107. ${PC_${component}_INCLUDE_DIRS}
  108. PATHS
  109. ${ImageMagick_INCLUDE_DIRS}
  110. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\ImageMagick\\Current;BinPath]/include"
  111. PATH_SUFFIXES
  112. ImageMagick ImageMagick-6
  113. DOC "Path to the ImageMagick arch-independent include dir."
  114. )
  115. find_path(ImageMagick_${component}_ARCH_INCLUDE_DIR
  116. NAMES magick/magick-baseconfig.h
  117. HINTS
  118. ${PC_${component}_INCLUDEDIR}
  119. ${PC_${component}_INCLUDE_DIRS}
  120. PATHS
  121. ${ImageMagick_INCLUDE_DIRS}
  122. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\ImageMagick\\Current;BinPath]/include"
  123. PATH_SUFFIXES
  124. ImageMagick ImageMagick-6
  125. DOC "Path to the ImageMagick arch-specific include dir."
  126. )
  127. find_library(ImageMagick_${component}_LIBRARY
  128. NAMES ${ARGN}
  129. HINTS
  130. ${PC_${component}_LIBDIR}
  131. ${PC_${component}_LIB_DIRS}
  132. PATHS
  133. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\ImageMagick\\Current;BinPath]/lib"
  134. DOC "Path to the ImageMagick Magick++ library."
  135. )
  136. # old version have only indep dir
  137. if(ImageMagick_${component}_INCLUDE_DIR AND ImageMagick_${component}_LIBRARY)
  138. set(ImageMagick_${component}_FOUND TRUE PARENT_SCOPE)
  139. # Construct per-component include directories.
  140. set(ImageMagick_${component}_INCLUDE_DIRS
  141. ${ImageMagick_${component}_INCLUDE_DIR}
  142. )
  143. if(ImageMagick_${component}_ARCH_INCLUDE_DIR)
  144. list(APPEND ImageMagick_${component}_INCLUDE_DIRS
  145. ${ImageMagick_${component}_ARCH_INCLUDE_DIR})
  146. endif()
  147. list(REMOVE_DUPLICATES ImageMagick_${component}_INCLUDE_DIRS)
  148. set(ImageMagick_${component}_INCLUDE_DIRS
  149. ${ImageMagick_${component}_INCLUDE_DIRS} PARENT_SCOPE)
  150. # Add the per-component include directories to the full include dirs.
  151. list(APPEND ImageMagick_INCLUDE_DIRS ${ImageMagick_${component}_INCLUDE_DIRS})
  152. list(REMOVE_DUPLICATES ImageMagick_INCLUDE_DIRS)
  153. set(ImageMagick_INCLUDE_DIRS ${ImageMagick_INCLUDE_DIRS} PARENT_SCOPE)
  154. list(APPEND ImageMagick_LIBRARIES
  155. ${ImageMagick_${component}_LIBRARY}
  156. )
  157. set(ImageMagick_LIBRARIES ${ImageMagick_LIBRARIES} PARENT_SCOPE)
  158. endif()
  159. endfunction()
  160. function(FIND_IMAGEMAGICK_EXE component)
  161. set(_IMAGEMAGICK_EXECUTABLE
  162. ${ImageMagick_EXECUTABLE_DIR}/${component}${CMAKE_EXECUTABLE_SUFFIX})
  163. if(EXISTS ${_IMAGEMAGICK_EXECUTABLE})
  164. set(ImageMagick_${component}_EXECUTABLE
  165. ${_IMAGEMAGICK_EXECUTABLE}
  166. PARENT_SCOPE
  167. )
  168. set(ImageMagick_${component}_FOUND TRUE PARENT_SCOPE)
  169. else()
  170. set(ImageMagick_${component}_FOUND FALSE PARENT_SCOPE)
  171. endif()
  172. endfunction()
  173. #---------------------------------------------------------------------
  174. # Start Actual Work
  175. #---------------------------------------------------------------------
  176. # Try to find a ImageMagick installation binary path.
  177. find_path(ImageMagick_EXECUTABLE_DIR
  178. NAMES mogrify${CMAKE_EXECUTABLE_SUFFIX}
  179. PATHS
  180. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\ImageMagick\\Current;BinPath]"
  181. DOC "Path to the ImageMagick binary directory."
  182. NO_DEFAULT_PATH
  183. )
  184. find_path(ImageMagick_EXECUTABLE_DIR
  185. NAMES mogrify${CMAKE_EXECUTABLE_SUFFIX}
  186. )
  187. # Find each component. Search for all tools in same dir
  188. # <ImageMagick_EXECUTABLE_DIR>; otherwise they should be found
  189. # independently and not in a cohesive module such as this one.
  190. unset(ImageMagick_REQUIRED_VARS)
  191. unset(ImageMagick_DEFAULT_EXECUTABLES)
  192. foreach(component ${ImageMagick_FIND_COMPONENTS}
  193. # DEPRECATED: forced components for backward compatibility
  194. convert mogrify import montage composite
  195. )
  196. if(component STREQUAL "Magick++")
  197. FIND_IMAGEMAGICK_API(Magick++ Magick++.h
  198. Magick++ CORE_RL_Magick++_ Magick++-6.Q16 Magick++-Q16 Magick++-6.Q8 Magick++-Q8 Magick++-6.Q16HDRI Magick++-Q16HDRI Magick++-6.Q8HDRI Magick++-Q8HDRI
  199. )
  200. list(APPEND ImageMagick_REQUIRED_VARS ImageMagick_Magick++_LIBRARY)
  201. elseif(component STREQUAL "MagickWand")
  202. FIND_IMAGEMAGICK_API(MagickWand wand/MagickWand.h
  203. Wand MagickWand CORE_RL_wand_ MagickWand-6.Q16 MagickWand-Q16 MagickWand-6.Q8 MagickWand-Q8 MagickWand-6.Q16HDRI MagickWand-Q16HDRI MagickWand-6.Q8HDRI MagickWand-Q8HDRI
  204. )
  205. list(APPEND ImageMagick_REQUIRED_VARS ImageMagick_MagickWand_LIBRARY)
  206. elseif(component STREQUAL "MagickCore")
  207. FIND_IMAGEMAGICK_API(MagickCore magick/MagickCore.h
  208. Magick MagickCore CORE_RL_magick_ MagickCore-6.Q16 MagickCore-Q16 MagickCore-6.Q8 MagickCore-Q8 MagickCore-6.Q16HDRI MagickCore-Q16HDRI MagickCore-6.Q8HDRI MagickCore-Q8HDRI
  209. )
  210. list(APPEND ImageMagick_REQUIRED_VARS ImageMagick_MagickCore_LIBRARY)
  211. else()
  212. if(ImageMagick_EXECUTABLE_DIR)
  213. FIND_IMAGEMAGICK_EXE(${component})
  214. endif()
  215. if(ImageMagick_FIND_COMPONENTS)
  216. list(FIND ImageMagick_FIND_COMPONENTS ${component} is_requested)
  217. if(is_requested GREATER -1)
  218. list(APPEND ImageMagick_REQUIRED_VARS ImageMagick_${component}_EXECUTABLE)
  219. endif()
  220. elseif(ImageMagick_${component}_EXECUTABLE)
  221. # if no components were requested explicitly put all (default) executables
  222. # in the list
  223. list(APPEND ImageMagick_DEFAULT_EXECUTABLES ImageMagick_${component}_EXECUTABLE)
  224. endif()
  225. endif()
  226. endforeach()
  227. if(NOT ImageMagick_FIND_COMPONENTS AND NOT ImageMagick_DEFAULT_EXECUTABLES)
  228. # No components were requested, and none of the default components were
  229. # found. Just insert mogrify into the list of the default components to
  230. # find so FPHSA below has something to check
  231. list(APPEND ImageMagick_REQUIRED_VARS ImageMagick_mogrify_EXECUTABLE)
  232. elseif(ImageMagick_DEFAULT_EXECUTABLES)
  233. list(APPEND ImageMagick_REQUIRED_VARS ${ImageMagick_DEFAULT_EXECUTABLES})
  234. endif()
  235. set(ImageMagick_INCLUDE_DIRS ${ImageMagick_INCLUDE_DIRS})
  236. set(ImageMagick_LIBRARIES ${ImageMagick_LIBRARIES})
  237. if(ImageMagick_mogrify_EXECUTABLE)
  238. execute_process(COMMAND ${ImageMagick_mogrify_EXECUTABLE} -version
  239. OUTPUT_VARIABLE imagemagick_version
  240. ERROR_QUIET
  241. OUTPUT_STRIP_TRAILING_WHITESPACE)
  242. if(imagemagick_version MATCHES "^Version: ImageMagick ([-0-9\\.]+)")
  243. set(ImageMagick_VERSION_STRING "${CMAKE_MATCH_1}")
  244. endif()
  245. unset(imagemagick_version)
  246. endif()
  247. #---------------------------------------------------------------------
  248. # Standard Package Output
  249. #---------------------------------------------------------------------
  250. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  251. FIND_PACKAGE_HANDLE_STANDARD_ARGS(ImageMagick
  252. REQUIRED_VARS ${ImageMagick_REQUIRED_VARS}
  253. VERSION_VAR ImageMagick_VERSION_STRING
  254. )
  255. # Maintain consistency with all other variables.
  256. set(ImageMagick_FOUND ${IMAGEMAGICK_FOUND})
  257. #---------------------------------------------------------------------
  258. # DEPRECATED: Setting variables for backward compatibility.
  259. #---------------------------------------------------------------------
  260. set(IMAGEMAGICK_BINARY_PATH ${ImageMagick_EXECUTABLE_DIR}
  261. CACHE PATH "Path to the ImageMagick binary directory.")
  262. set(IMAGEMAGICK_CONVERT_EXECUTABLE ${ImageMagick_convert_EXECUTABLE}
  263. CACHE FILEPATH "Path to ImageMagick's convert executable.")
  264. set(IMAGEMAGICK_MOGRIFY_EXECUTABLE ${ImageMagick_mogrify_EXECUTABLE}
  265. CACHE FILEPATH "Path to ImageMagick's mogrify executable.")
  266. set(IMAGEMAGICK_IMPORT_EXECUTABLE ${ImageMagick_import_EXECUTABLE}
  267. CACHE FILEPATH "Path to ImageMagick's import executable.")
  268. set(IMAGEMAGICK_MONTAGE_EXECUTABLE ${ImageMagick_montage_EXECUTABLE}
  269. CACHE FILEPATH "Path to ImageMagick's montage executable.")
  270. set(IMAGEMAGICK_COMPOSITE_EXECUTABLE ${ImageMagick_composite_EXECUTABLE}
  271. CACHE FILEPATH "Path to ImageMagick's composite executable.")
  272. mark_as_advanced(
  273. IMAGEMAGICK_BINARY_PATH
  274. IMAGEMAGICK_CONVERT_EXECUTABLE
  275. IMAGEMAGICK_MOGRIFY_EXECUTABLE
  276. IMAGEMAGICK_IMPORT_EXECUTABLE
  277. IMAGEMAGICK_MONTAGE_EXECUTABLE
  278. IMAGEMAGICK_COMPOSITE_EXECUTABLE
  279. )