cmake_language.rst 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. cmake_language
  2. --------------
  3. .. versionadded:: 3.18
  4. Call meta-operations on CMake commands.
  5. Synopsis
  6. ^^^^^^^^
  7. .. parsed-literal::
  8. cmake_language(`CALL`_ <command> [<arg>...])
  9. cmake_language(`EVAL`_ CODE <code>...)
  10. cmake_language(`DEFER`_ <options>... CALL <command> [<arg>...])
  11. cmake_language(`SET_DEPENDENCY_PROVIDER`_ <command> SUPPORTED_METHODS <methods>...)
  12. Introduction
  13. ^^^^^^^^^^^^
  14. This command will call meta-operations on built-in CMake commands or
  15. those created via the :command:`macro` or :command:`function` commands.
  16. ``cmake_language`` does not introduce a new variable or policy scope.
  17. Calling Commands
  18. ^^^^^^^^^^^^^^^^
  19. .. _CALL:
  20. .. code-block:: cmake
  21. cmake_language(CALL <command> [<arg>...])
  22. Calls the named ``<command>`` with the given arguments (if any).
  23. For example, the code:
  24. .. code-block:: cmake
  25. set(message_command "message")
  26. cmake_language(CALL ${message_command} STATUS "Hello World!")
  27. is equivalent to
  28. .. code-block:: cmake
  29. message(STATUS "Hello World!")
  30. .. note::
  31. To ensure consistency of the code, the following commands are not allowed:
  32. * ``if`` / ``elseif`` / ``else`` / ``endif``
  33. * ``while`` / ``endwhile``
  34. * ``foreach`` / ``endforeach``
  35. * ``function`` / ``endfunction``
  36. * ``macro`` / ``endmacro``
  37. Evaluating Code
  38. ^^^^^^^^^^^^^^^
  39. .. _EVAL:
  40. .. code-block:: cmake
  41. cmake_language(EVAL CODE <code>...)
  42. Evaluates the ``<code>...`` as CMake code.
  43. For example, the code:
  44. .. code-block:: cmake
  45. set(A TRUE)
  46. set(B TRUE)
  47. set(C TRUE)
  48. set(condition "(A AND B) OR C")
  49. cmake_language(EVAL CODE "
  50. if (${condition})
  51. message(STATUS TRUE)
  52. else()
  53. message(STATUS FALSE)
  54. endif()"
  55. )
  56. is equivalent to
  57. .. code-block:: cmake
  58. set(A TRUE)
  59. set(B TRUE)
  60. set(C TRUE)
  61. set(condition "(A AND B) OR C")
  62. file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/eval.cmake "
  63. if (${condition})
  64. message(STATUS TRUE)
  65. else()
  66. message(STATUS FALSE)
  67. endif()"
  68. )
  69. include(${CMAKE_CURRENT_BINARY_DIR}/eval.cmake)
  70. Deferring Calls
  71. ^^^^^^^^^^^^^^^
  72. .. versionadded:: 3.19
  73. .. _DEFER:
  74. .. code-block:: cmake
  75. cmake_language(DEFER <options>... CALL <command> [<arg>...])
  76. Schedules a call to the named ``<command>`` with the given arguments (if any)
  77. to occur at a later time. By default, deferred calls are executed as if
  78. written at the end of the current directory's ``CMakeLists.txt`` file,
  79. except that they run even after a :command:`return` call. Variable
  80. references in arguments are evaluated at the time the deferred call is
  81. executed.
  82. The options are:
  83. ``DIRECTORY <dir>``
  84. Schedule the call for the end of the given directory instead of the
  85. current directory. The ``<dir>`` may reference either a source
  86. directory or its corresponding binary directory. Relative paths are
  87. treated as relative to the current source directory.
  88. The given directory must be known to CMake, being either the top-level
  89. directory or one added by :command:`add_subdirectory`. Furthermore,
  90. the given directory must not yet be finished processing. This means
  91. it can be the current directory or one of its ancestors.
  92. ``ID <id>``
  93. Specify an identification for the deferred call.
  94. The ``<id>`` may not be empty and may not begin with a capital letter ``A-Z``.
  95. The ``<id>`` may begin with an underscore (``_``) only if it was generated
  96. automatically by an earlier call that used ``ID_VAR`` to get the id.
  97. ``ID_VAR <var>``
  98. Specify a variable in which to store the identification for the
  99. deferred call. If ``ID <id>`` is not given, a new identification
  100. will be generated and the generated id will start with an underscore (``_``).
  101. The currently scheduled list of deferred calls may be retrieved:
  102. .. code-block:: cmake
  103. cmake_language(DEFER [DIRECTORY <dir>] GET_CALL_IDS <var>)
  104. This will store in ``<var>`` a :ref:`semicolon-separated list <CMake Language
  105. Lists>` of deferred call ids. The ids are for the directory scope in which
  106. the calls have been deferred to (i.e. where they will be executed), which can
  107. be different to the scope in which they were created. The ``DIRECTORY``
  108. option can be used to specify the scope for which to retrieve the call ids.
  109. If that option is not given, the call ids for the current directory scope will
  110. be returned.
  111. Details of a specific call may be retrieved from its id:
  112. .. code-block:: cmake
  113. cmake_language(DEFER [DIRECTORY <dir>] GET_CALL <id> <var>)
  114. This will store in ``<var>`` a :ref:`semicolon-separated list <CMake Language
  115. Lists>` in which the first element is the name of the command to be
  116. called, and the remaining elements are its unevaluated arguments (any
  117. contained ``;`` characters are included literally and cannot be distinguished
  118. from multiple arguments). If multiple calls are scheduled with the same id,
  119. this retrieves the first one. If no call is scheduled with the given id in
  120. the specified ``DIRECTORY`` scope (or the current directory scope if no
  121. ``DIRECTORY`` option is given), this stores an empty string in the variable.
  122. Deferred calls may be canceled by their id:
  123. .. code-block:: cmake
  124. cmake_language(DEFER [DIRECTORY <dir>] CANCEL_CALL <id>...)
  125. This cancels all deferred calls matching any of the given ids in the specified
  126. ``DIRECTORY`` scope (or the current directory scope if no ``DIRECTORY`` option
  127. is given). Unknown ids are silently ignored.
  128. Deferred Call Examples
  129. """"""""""""""""""""""
  130. For example, the code:
  131. .. code-block:: cmake
  132. cmake_language(DEFER CALL message "${deferred_message}")
  133. cmake_language(DEFER ID_VAR id CALL message "Canceled Message")
  134. cmake_language(DEFER CANCEL_CALL ${id})
  135. message("Immediate Message")
  136. set(deferred_message "Deferred Message")
  137. prints::
  138. Immediate Message
  139. Deferred Message
  140. The ``Cancelled Message`` is never printed because its command is
  141. canceled. The ``deferred_message`` variable reference is not evaluated
  142. until the call site, so it can be set after the deferred call is scheduled.
  143. In order to evaluate variable references immediately when scheduling a
  144. deferred call, wrap it using ``cmake_language(EVAL)``. However, note that
  145. arguments will be re-evaluated in the deferred call, though that can be
  146. avoided by using bracket arguments. For example:
  147. .. code-block:: cmake
  148. set(deferred_message "Deferred Message 1")
  149. set(re_evaluated [[${deferred_message}]])
  150. cmake_language(EVAL CODE "
  151. cmake_language(DEFER CALL message [[${deferred_message}]])
  152. cmake_language(DEFER CALL message \"${re_evaluated}\")
  153. ")
  154. message("Immediate Message")
  155. set(deferred_message "Deferred Message 2")
  156. also prints::
  157. Immediate Message
  158. Deferred Message 1
  159. Deferred Message 2
  160. .. _SET_DEPENDENCY_PROVIDER:
  161. .. _dependency_providers:
  162. Dependency Providers
  163. ^^^^^^^^^^^^^^^^^^^^
  164. .. versionadded:: 3.24
  165. .. note:: A high-level introduction to this feature can be found in the
  166. :ref:`Using Dependencies Guide <dependency_providers_overview>`.
  167. .. code-block:: cmake
  168. cmake_language(SET_DEPENDENCY_PROVIDER <command>
  169. SUPPORTED_METHODS <methods>...)
  170. When a call is made to :command:`find_package` or
  171. :command:`FetchContent_MakeAvailable`, the call may be forwarded to a
  172. dependency provider which then has the opportunity to fulfill the request.
  173. If the request is for one of the ``<methods>`` specified when the provider
  174. was set, CMake calls the provider's ``<command>`` with a set of
  175. method-specific arguments. If the provider does not fulfill the request,
  176. or if the provider doesn't support the request's method, or no provider
  177. is set, the built-in :command:`find_package` or
  178. :command:`FetchContent_MakeAvailable` implementation is used to fulfill
  179. the request in the usual way.
  180. One or more of the following values can be specified for the ``<methods>``
  181. when setting the provider:
  182. ``FIND_PACKAGE``
  183. The provider command accepts :command:`find_package` requests.
  184. ``FETCHCONTENT_MAKEAVAILABLE_SERIAL``
  185. The provider command accepts :command:`FetchContent_MakeAvailable`
  186. requests. It expects each dependency to be fed to the provider command
  187. one at a time, not the whole list in one go.
  188. Only one provider can be set at any point in time. If a provider is already
  189. set when ``cmake_language(SET_DEPENDENCY_PROVIDER)`` is called, the new
  190. provider replaces the previously set one. The specified ``<command>`` must
  191. already exist when ``cmake_language(SET_DEPENDENCY_PROVIDER)`` is called.
  192. As a special case, providing an empty string for the ``<command>`` and no
  193. ``<methods>`` will discard any previously set provider.
  194. The dependency provider can only be set while processing one of the files
  195. specified by the :variable:`CMAKE_PROJECT_TOP_LEVEL_INCLUDES` variable.
  196. Thus, dependency providers can only be set as part of the first call to
  197. :command:`project`. Calling ``cmake_language(SET_DEPENDENCY_PROVIDER)``
  198. outside of that context will result in an error.
  199. .. note::
  200. The choice of dependency provider should always be under the user's control.
  201. As a convenience, a project may choose to provide a file that users can
  202. list in their :variable:`CMAKE_PROJECT_TOP_LEVEL_INCLUDES` variable, but
  203. the use of such a file should always be the user's choice.
  204. Provider commands
  205. """""""""""""""""
  206. Providers define a single ``<command>`` to accept requests. The name of
  207. the command should be specific to that provider, not something overly
  208. generic that another provider might also use. This enables users to compose
  209. different providers in their own custom provider. The recommended form is
  210. ``xxx_provide_dependency()``, where ``xxx`` is the provider-specific part
  211. (e.g. ``vcpkg_provide_dependency()``, ``conan_provide_dependency()``,
  212. ``ourcompany_provide_dependency()``, and so on).
  213. .. code-block:: cmake
  214. xxx_provide_dependency(<method> [<method-specific-args>...])
  215. Because some methods expect certain variables to be set in the calling scope,
  216. the provider command should typically be implemented as a macro rather than a
  217. function. This ensures it does not introduce a new variable scope.
  218. The arguments CMake passes to the dependency provider depend on the type of
  219. request. The first argument is always the method, and it will only ever
  220. be one of the ``<methods>`` that was specified when setting the provider.
  221. ``FIND_PACKAGE``
  222. The ``<method-specific-args>`` will be everything passed to the
  223. :command:`find_package` call that requested the dependency. The first of
  224. these ``<method-specific-args>`` will therefore always be the name of the
  225. dependency. Dependency names are case-sensitive for this method because
  226. :command:`find_package` treats them case-sensitively too.
  227. If the provider command fulfills the request, it must set the same variable
  228. that :command:`find_package` expects to be set. For a dependency named
  229. ``depName``, the provider must set ``depName_FOUND`` to true if it fulfilled
  230. the request. If the provider returns without setting this variable, CMake
  231. will assume the request was not fulfilled and will fall back to the
  232. built-in implementation.
  233. If the provider needs to call the built-in :command:`find_package`
  234. implementation as part of its processing, it can do so by including the
  235. ``BYPASS_PROVIDER`` keyword as one of the arguments.
  236. ``FETCHCONTENT_MAKEAVAILABE_SERIAL``
  237. The ``<method-specific-args>`` will be everything passed to the
  238. :command:`FetchContent_Declare` call that corresponds to the requested
  239. dependency, with the following exceptions:
  240. * If ``SOURCE_DIR`` or ``BINARY_DIR`` were not part of the original
  241. declared arguments, they will be added with their default values.
  242. * If :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` is set to ``NEVER``,
  243. any ``FIND_PACKAGE_ARGS`` will be omitted.
  244. * The ``OVERRIDE_FIND_PACKAGE`` keyword is always omitted.
  245. The first of the ``<method-specific-args>`` will always be the name of the
  246. dependency. Dependency names are case-insensitive for this method because
  247. :module:`FetchContent` also treats them case-insensitively.
  248. If the provider fulfills the request, it should call
  249. :command:`FetchContent_SetPopulated`, passing the name of the dependency as
  250. the first argument. The ``SOURCE_DIR`` and ``BINARY_DIR`` arguments to that
  251. command should only be given if the provider makes the dependency's source
  252. and build directories available in exactly the same way as the built-in
  253. :command:`FetchContent_MakeAvailable` command.
  254. If the provider returns without calling :command:`FetchContent_SetPopulated`
  255. for the named dependency, CMake will assume the request was not fulfilled
  256. and will fall back to the built-in implementation.
  257. Note that empty arguments may be significant for this method (e.g. an empty
  258. string following a ``GIT_SUBMODULES`` keyword). Therefore, if forwarding
  259. these arguments on to another command, extra care must be taken to avoid such
  260. arguments being silently dropped.
  261. If ``FETCHCONTENT_SOURCE_DIR_<uppercaseDepName>`` is set, then the
  262. dependency provider will never see requests for the ``<depName>`` dependency
  263. for this method. When the user sets such a variable, they are explicitly
  264. overriding where to get that dependency from and are taking on the
  265. responsibility that their overriding version meets any requirements for that
  266. dependency and is compatible with whatever else in the project uses it.
  267. Depending on the value of :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE`
  268. and whether the ``OVERRIDE_FIND_PACKAGE`` option was given to
  269. :command:`FetchContent_Declare`, having
  270. ``FETCHCONTENT_SOURCE_DIR_<uppercaseDepName>`` set may also prevent the
  271. dependency provider from seeing requests for a ``find_package(depName)``
  272. call too.
  273. Provider Examples
  274. """""""""""""""""
  275. This first example only intercepts :command:`find_package` calls. The
  276. provider command runs an external tool which copies the relevant artifacts
  277. into a provider-specific directory, if that tool knows about the dependency.
  278. It then relies on the built-in implementation to then find those artifacts.
  279. :command:`FetchContent_MakeAvailable` calls would not go through the provider.
  280. .. code-block:: cmake
  281. :caption: mycomp_provider.cmake
  282. # Always ensure we have the policy settings this provider expects
  283. cmake_minimum_required(VERSION 3.24)
  284. set(MYCOMP_PROVIDER_INSTALL_DIR ${CMAKE_BINARY_DIR}/mycomp_packages
  285. CACHE PATH "The directory this provider installs packages to"
  286. )
  287. # Tell the built-in implementation to look in our area first, unless
  288. # the find_package() call uses NO_..._PATH options to exclude it
  289. list(APPEND CMAKE_MODULE_PATH ${MYCOMP_PROVIDER_INSTALL_DIR}/cmake)
  290. list(APPEND CMAKE_PREFIX_PATH ${MYCOMP_PROVIDER_INSTALL_DIR})
  291. macro(mycomp_provide_dependency method package_name)
  292. execute_process(
  293. COMMAND some_tool ${package_name} --installdir ${MYCOMP_PROVIDER_INSTALL_DIR}
  294. COMMAND_ERROR_IS_FATAL ANY
  295. )
  296. endmacro()
  297. cmake_language(
  298. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  299. SUPPORTED_METHODS FIND_PACKAGE
  300. )
  301. The user would then typically use the above file like so::
  302. cmake -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=/path/to/mycomp_provider.cmake ...
  303. The next example demonstrates a provider that accepts both methods, but
  304. only handles one specific dependency. It enforces providing Google Test
  305. using :module:`FetchContent`, but leaves all other dependencies to be
  306. fulfilled by CMake's built-in implementation. It accepts a few different
  307. names, which demonstrates one way of working around projects that hard-code
  308. an unusual or undesirable way of adding this particular dependency to the
  309. build. The example also demonstrates how to use the :command:`list` command
  310. to preserve variables that may be overwritten by a call to
  311. :command:`FetchContent_MakeAvailable`.
  312. .. code-block:: cmake
  313. :caption: mycomp_provider.cmake
  314. cmake_minimum_required(VERSION 3.24)
  315. # Because we declare this very early, it will take precedence over any
  316. # details the project might declare later for the same thing
  317. include(FetchContent)
  318. FetchContent_Declare(
  319. googletest
  320. GIT_REPOSITORY https://github.com/google/googletest.git
  321. GIT_TAG e2239ee6043f73722e7aa812a459f54a28552929 # release-1.11.0
  322. )
  323. # Both FIND_PACKAGE and FETCHCONTENT_MAKEAVAILABLE_SERIAL methods provide
  324. # the package or dependency name as the first method-specific argument.
  325. macro(mycomp_provide_dependency method dep_name)
  326. if("${dep_name}" MATCHES "^(gtest|googletest)$")
  327. # Save our current command arguments in case we are called recursively
  328. list(APPEND mycomp_provider_args ${method} ${dep_name})
  329. # This will forward to the built-in FetchContent implementation,
  330. # which detects a recursive call for the same thing and avoids calling
  331. # the provider again if dep_name is the same as the current call.
  332. FetchContent_MakeAvailable(googletest)
  333. # Restore our command arguments
  334. list(POP_BACK mycomp_provider_args dep_name method)
  335. # Tell the caller we fulfilled the request
  336. if("${method}" STREQUAL "FIND_PACKAGE")
  337. # We need to set this if we got here from a find_package() call
  338. # since we used a different method to fulfill the request.
  339. # This example assumes projects only use the gtest targets,
  340. # not any of the variables the FindGTest module may define.
  341. set(${dep_name}_FOUND TRUE)
  342. elseif(NOT "${dep_name}" STREQUAL "googletest")
  343. # We used the same method, but were given a different name to the
  344. # one we populated with. Tell the caller about the name it used.
  345. FetchContent_SetPopulated(${dep_name}
  346. SOURCE_DIR "${googletest_SOURCE_DIR}"
  347. BINARY_DIR "${googletest_BINARY_DIR}"
  348. )
  349. endif()
  350. endif()
  351. endmacro()
  352. cmake_language(
  353. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  354. SUPPORTED_METHODS
  355. FIND_PACKAGE
  356. FETCHCONTENT_MAKEAVAILABLE_SERIAL
  357. )
  358. The final example demonstrates how to modify arguments to a
  359. :command:`find_package` call. It forces all such calls to have the
  360. ``QUIET`` keyword. It uses the ``BYPASS_PROVIDER`` keyword to prevent
  361. calling the provider command recursively for the same dependency.
  362. .. code-block:: cmake
  363. :caption: mycomp_provider.cmake
  364. cmake_minimum_required(VERSION 3.24)
  365. macro(mycomp_provide_dependency method)
  366. find_package(${ARGN} BYPASS_PROVIDER QUIET)
  367. endmacro()
  368. cmake_language(
  369. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  370. SUPPORTED_METHODS FIND_PACKAGE
  371. )