CMakePackageConfigHelpers.cmake 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. #.rst:
  2. # CMakePackageConfigHelpers
  3. # -------------------------
  4. #
  5. # Helpers functions for creating config files that can be included by other
  6. # projects to find and use a package.
  7. #
  8. # Adds the :command:`configure_package_config_file()` and
  9. # :command:`write_basic_package_version_file()` commands.
  10. #
  11. # Generating a Package Configuration File
  12. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  13. #
  14. # .. command:: configure_package_config_file
  15. #
  16. # Create a config file for a project::
  17. #
  18. # configure_package_config_file(<input> <output>
  19. # INSTALL_DESTINATION <path>
  20. # [PATH_VARS <var1> <var2> ... <varN>]
  21. # [NO_SET_AND_CHECK_MACRO]
  22. # [NO_CHECK_REQUIRED_COMPONENTS_MACRO]
  23. # [INSTALL_PREFIX <path>]
  24. # )
  25. #
  26. # ``configure_package_config_file()`` should be used instead of the plain
  27. # :command:`configure_file()` command when creating the ``<Name>Config.cmake``
  28. # or ``<Name>-config.cmake`` file for installing a project or library. It helps
  29. # making the resulting package relocatable by avoiding hardcoded paths in the
  30. # installed ``Config.cmake`` file.
  31. #
  32. # In a ``FooConfig.cmake`` file there may be code like this to make the install
  33. # destinations know to the using project:
  34. #
  35. # .. code-block:: cmake
  36. #
  37. # set(FOO_INCLUDE_DIR "@CMAKE_INSTALL_FULL_INCLUDEDIR@" )
  38. # set(FOO_DATA_DIR "@CMAKE_INSTALL_PREFIX@/@RELATIVE_DATA_INSTALL_DIR@" )
  39. # set(FOO_ICONS_DIR "@CMAKE_INSTALL_PREFIX@/share/icons" )
  40. # ...logic to determine installedPrefix from the own location...
  41. # set(FOO_CONFIG_DIR "${installedPrefix}/@CONFIG_INSTALL_DIR@" )
  42. #
  43. # All 4 options shown above are not sufficient, since the first 3 hardcode the
  44. # absolute directory locations, and the 4th case works only if the logic to
  45. # determine the ``installedPrefix`` is correct, and if ``CONFIG_INSTALL_DIR``
  46. # contains a relative path, which in general cannot be guaranteed. This has the
  47. # effect that the resulting ``FooConfig.cmake`` file would work poorly under
  48. # Windows and OSX, where users are used to choose the install location of a
  49. # binary package at install time, independent from how
  50. # :variable:`CMAKE_INSTALL_PREFIX` was set at build/cmake time.
  51. #
  52. # Using ``configure_package_config_file`` helps. If used correctly, it makes
  53. # the resulting ``FooConfig.cmake`` file relocatable. Usage:
  54. #
  55. # 1. write a ``FooConfig.cmake.in`` file as you are used to
  56. # 2. insert a line containing only the string ``@PACKAGE_INIT@``
  57. # 3. instead of ``set(FOO_DIR "@SOME_INSTALL_DIR@")``, use
  58. # ``set(FOO_DIR "@PACKAGE_SOME_INSTALL_DIR@")`` (this must be after the
  59. # ``@PACKAGE_INIT@`` line)
  60. # 4. instead of using the normal :command:`configure_file()`, use
  61. # ``configure_package_config_file()``
  62. #
  63. #
  64. #
  65. # The ``<input>`` and ``<output>`` arguments are the input and output file, the
  66. # same way as in :command:`configure_file()`.
  67. #
  68. # The ``<path>`` given to ``INSTALL_DESTINATION`` must be the destination where
  69. # the ``FooConfig.cmake`` file will be installed to. This path can either be
  70. # absolute, or relative to the ``INSTALL_PREFIX`` path.
  71. #
  72. # The variables ``<var1>`` to ``<varN>`` given as ``PATH_VARS`` are the
  73. # variables which contain install destinations. For each of them the macro will
  74. # create a helper variable ``PACKAGE_<var...>``. These helper variables must be
  75. # used in the ``FooConfig.cmake.in`` file for setting the installed location.
  76. # They are calculated by ``configure_package_config_file`` so that they are
  77. # always relative to the installed location of the package. This works both for
  78. # relative and also for absolute locations. For absolute locations it works
  79. # only if the absolute location is a subdirectory of ``INSTALL_PREFIX``.
  80. #
  81. # If the ``INSTALL_PREFIX`` argument is passed, this is used as base path to
  82. # calculate all the relative paths. The ``<path>`` argument must be an absolute
  83. # path. If this argument is not passed, the :variable:`CMAKE_INSTALL_PREFIX`
  84. # variable will be used instead. The default value is good when generating a
  85. # FooConfig.cmake file to use your package from the install tree. When
  86. # generating a FooConfig.cmake file to use your package from the build tree this
  87. # option should be used.
  88. #
  89. # By default ``configure_package_config_file`` also generates two helper macros,
  90. # ``set_and_check()`` and ``check_required_components()`` into the
  91. # ``FooConfig.cmake`` file.
  92. #
  93. # ``set_and_check()`` should be used instead of the normal ``set()`` command for
  94. # setting directories and file locations. Additionally to setting the variable
  95. # it also checks that the referenced file or directory actually exists and fails
  96. # with a ``FATAL_ERROR`` otherwise. This makes sure that the created
  97. # ``FooConfig.cmake`` file does not contain wrong references.
  98. # When using the ``NO_SET_AND_CHECK_MACRO``, this macro is not generated
  99. # into the ``FooConfig.cmake`` file.
  100. #
  101. # ``check_required_components(<package_name>)`` should be called at the end of
  102. # the ``FooConfig.cmake`` file if the package supports components. This macro
  103. # checks whether all requested, non-optional components have been found, and if
  104. # this is not the case, sets the ``Foo_FOUND`` variable to ``FALSE``, so that
  105. # the package is considered to be not found. It does that by testing the
  106. # ``Foo_<Component>_FOUND`` variables for all requested required components.
  107. # When using the ``NO_CHECK_REQUIRED_COMPONENTS_MACRO`` option, this macro is
  108. # not generated into the ``FooConfig.cmake`` file.
  109. #
  110. # For an example see below the documentation for
  111. # :command:`write_basic_package_version_file()`.
  112. #
  113. # Generating a Package Version File
  114. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  115. #
  116. # .. command:: write_basic_package_version_file
  117. #
  118. # Create a version file for a project::
  119. #
  120. # write_basic_package_version_file(<filename>
  121. # [VERSION <major.minor.patch>]
  122. # COMPATIBILITY <AnyNewerVersion|SameMajorVersion|ExactVersion> )
  123. #
  124. #
  125. # Writes a file for use as ``<package>ConfigVersion.cmake`` file to
  126. # ``<filename>``. See the documentation of :command:`find_package()` for
  127. # details on this.
  128. #
  129. # ``<filename>`` is the output filename, it should be in the build tree.
  130. # ``<major.minor.patch>`` is the version number of the project to be installed.
  131. #
  132. # If no ``VERSION`` is given, the :variable:`PROJECT_VERSION` variable is used.
  133. # If this hasn't been set, it errors out.
  134. #
  135. # The ``COMPATIBILITY`` mode ``AnyNewerVersion`` means that the installed
  136. # package version will be considered compatible if it is newer or exactly the
  137. # same as the requested version. This mode should be used for packages which
  138. # are fully backward compatible, also across major versions.
  139. # If ``SameMajorVersion`` is used instead, then the behaviour differs from
  140. # ``AnyNewerVersion`` in that the major version number must be the same as
  141. # requested, e.g. version 2.0 will not be considered compatible if 1.0 is
  142. # requested. This mode should be used for packages which guarantee backward
  143. # compatibility within the same major version.
  144. # If ``ExactVersion`` is used, then the package is only considered compatible if
  145. # the requested version matches exactly its own version number (not considering
  146. # the tweak version). For example, version 1.2.3 of a package is only
  147. # considered compatible to requested version 1.2.3. This mode is for packages
  148. # without compatibility guarantees.
  149. # If your project has more elaborated version matching rules, you will need to
  150. # write your own custom ``ConfigVersion.cmake`` file instead of using this
  151. # macro.
  152. #
  153. # Internally, this macro executes :command:`configure_file()` to create the
  154. # resulting version file. Depending on the ``COMPATIBLITY``, either the file
  155. # ``BasicConfigVersion-SameMajorVersion.cmake.in`` or
  156. # ``BasicConfigVersion-AnyNewerVersion.cmake.in`` is used. Please note that
  157. # these two files are internal to CMake and you should not call
  158. # :command:`configure_file()` on them yourself, but they can be used as starting
  159. # point to create more sophisticted custom ``ConfigVersion.cmake`` files.
  160. #
  161. # Example Generating Package Files
  162. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  163. #
  164. # Example using both :command:`configure_package_config_file` and
  165. # ``write_basic_package_version_file()``:
  166. #
  167. # ``CMakeLists.txt``:
  168. #
  169. # .. code-block:: cmake
  170. #
  171. # set(INCLUDE_INSTALL_DIR include/ ... CACHE )
  172. # set(LIB_INSTALL_DIR lib/ ... CACHE )
  173. # set(SYSCONFIG_INSTALL_DIR etc/foo/ ... CACHE )
  174. # ...
  175. # include(CMakePackageConfigHelpers)
  176. # configure_package_config_file(FooConfig.cmake.in
  177. # ${CMAKE_CURRENT_BINARY_DIR}/FooConfig.cmake
  178. # INSTALL_DESTINATION ${LIB_INSTALL_DIR}/Foo/cmake
  179. # PATH_VARS INCLUDE_INSTALL_DIR SYSCONFIG_INSTALL_DIR)
  180. # write_basic_package_version_file(
  181. # ${CMAKE_CURRENT_BINARY_DIR}/FooConfigVersion.cmake
  182. # VERSION 1.2.3
  183. # COMPATIBILITY SameMajorVersion )
  184. # install(FILES ${CMAKE_CURRENT_BINARY_DIR}/FooConfig.cmake
  185. # ${CMAKE_CURRENT_BINARY_DIR}/FooConfigVersion.cmake
  186. # DESTINATION ${LIB_INSTALL_DIR}/Foo/cmake )
  187. #
  188. # ``FooConfig.cmake.in``:
  189. #
  190. # .. code-block:: cmake
  191. #
  192. # set(FOO_VERSION x.y.z)
  193. # ...
  194. # @PACKAGE_INIT@
  195. # ...
  196. # set_and_check(FOO_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@")
  197. # set_and_check(FOO_SYSCONFIG_DIR "@PACKAGE_SYSCONFIG_INSTALL_DIR@")
  198. #
  199. # check_required_components(Foo)
  200. #=============================================================================
  201. # Copyright 2012 Alexander Neundorf <neundorf@kde.org>
  202. #
  203. # Distributed under the OSI-approved BSD License (the "License");
  204. # see accompanying file Copyright.txt for details.
  205. #
  206. # This software is distributed WITHOUT ANY WARRANTY; without even the
  207. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  208. # See the License for more information.
  209. #=============================================================================
  210. # (To distribute this file outside of CMake, substitute the full
  211. # License text for the above reference.)
  212. include(CMakeParseArguments)
  213. include(WriteBasicConfigVersionFile)
  214. macro(WRITE_BASIC_PACKAGE_VERSION_FILE)
  215. write_basic_config_version_file(${ARGN})
  216. endmacro()
  217. function(CONFIGURE_PACKAGE_CONFIG_FILE _inputFile _outputFile)
  218. set(options NO_SET_AND_CHECK_MACRO NO_CHECK_REQUIRED_COMPONENTS_MACRO)
  219. set(oneValueArgs INSTALL_DESTINATION INSTALL_PREFIX)
  220. set(multiValueArgs PATH_VARS )
  221. cmake_parse_arguments(CCF "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  222. if(CCF_UNPARSED_ARGUMENTS)
  223. message(FATAL_ERROR "Unknown keywords given to CONFIGURE_PACKAGE_CONFIG_FILE(): \"${CCF_UNPARSED_ARGUMENTS}\"")
  224. endif()
  225. if(NOT CCF_INSTALL_DESTINATION)
  226. message(FATAL_ERROR "No INSTALL_DESTINATION given to CONFIGURE_PACKAGE_CONFIG_FILE()")
  227. endif()
  228. if(DEFINED CCF_INSTALL_PREFIX)
  229. if(IS_ABSOLUTE "${CCF_INSTALL_PREFIX}")
  230. set(installPrefix "${CCF_INSTALL_PREFIX}")
  231. else()
  232. message(FATAL_ERROR "INSTALL_PREFIX must be an absolute path")
  233. endif()
  234. elseif(IS_ABSOLUTE "${CMAKE_INSTALL_PREFIX}")
  235. set(installPrefix "${CMAKE_INSTALL_PREFIX}")
  236. else()
  237. get_filename_component(installPrefix "${CMAKE_INSTALL_PREFIX}" ABSOLUTE)
  238. endif()
  239. if(IS_ABSOLUTE "${CCF_INSTALL_DESTINATION}")
  240. set(absInstallDir "${CCF_INSTALL_DESTINATION}")
  241. else()
  242. set(absInstallDir "${installPrefix}/${CCF_INSTALL_DESTINATION}")
  243. endif()
  244. file(RELATIVE_PATH PACKAGE_RELATIVE_PATH "${absInstallDir}" "${installPrefix}" )
  245. foreach(var ${CCF_PATH_VARS})
  246. if(NOT DEFINED ${var})
  247. message(FATAL_ERROR "Variable ${var} does not exist")
  248. else()
  249. if(IS_ABSOLUTE "${${var}}")
  250. string(REPLACE "${installPrefix}" "\${PACKAGE_PREFIX_DIR}"
  251. PACKAGE_${var} "${${var}}")
  252. else()
  253. set(PACKAGE_${var} "\${PACKAGE_PREFIX_DIR}/${${var}}")
  254. endif()
  255. endif()
  256. endforeach()
  257. get_filename_component(inputFileName "${_inputFile}" NAME)
  258. set(PACKAGE_INIT "
  259. ####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
  260. ####### Any changes to this file will be overwritten by the next CMake run ####
  261. ####### The input file was ${inputFileName} ########
  262. get_filename_component(PACKAGE_PREFIX_DIR \"\${CMAKE_CURRENT_LIST_DIR}/${PACKAGE_RELATIVE_PATH}\" ABSOLUTE)
  263. ")
  264. if("${absInstallDir}" MATCHES "^(/usr)?/lib(64)?/.+")
  265. # Handle "/usr move" symlinks created by some Linux distros.
  266. set(PACKAGE_INIT "${PACKAGE_INIT}
  267. # Use original install prefix when loaded through a \"/usr move\"
  268. # cross-prefix symbolic link such as /lib -> /usr/lib.
  269. get_filename_component(_realCurr \"\${CMAKE_CURRENT_LIST_DIR}\" REALPATH)
  270. get_filename_component(_realOrig \"${absInstallDir}\" REALPATH)
  271. if(_realCurr STREQUAL _realOrig)
  272. set(PACKAGE_PREFIX_DIR \"${installPrefix}\")
  273. endif()
  274. unset(_realOrig)
  275. unset(_realCurr)
  276. ")
  277. endif()
  278. if(NOT CCF_NO_SET_AND_CHECK_MACRO)
  279. set(PACKAGE_INIT "${PACKAGE_INIT}
  280. macro(set_and_check _var _file)
  281. set(\${_var} \"\${_file}\")
  282. if(NOT EXISTS \"\${_file}\")
  283. message(FATAL_ERROR \"File or directory \${_file} referenced by variable \${_var} does not exist !\")
  284. endif()
  285. endmacro()
  286. ")
  287. endif()
  288. if(NOT CCF_NO_CHECK_REQUIRED_COMPONENTS_MACRO)
  289. set(PACKAGE_INIT "${PACKAGE_INIT}
  290. macro(check_required_components _NAME)
  291. foreach(comp \${\${_NAME}_FIND_COMPONENTS})
  292. if(NOT \${_NAME}_\${comp}_FOUND)
  293. if(\${_NAME}_FIND_REQUIRED_\${comp})
  294. set(\${_NAME}_FOUND FALSE)
  295. endif()
  296. endif()
  297. endforeach()
  298. endmacro()
  299. ")
  300. endif()
  301. set(PACKAGE_INIT "${PACKAGE_INIT}
  302. ####################################################################################")
  303. configure_file("${_inputFile}" "${_outputFile}" @ONLY)
  304. endfunction()