cmake_language.rst 19 KB

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