cmake_language.rst 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  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. .. signature::
  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. * ``block`` / ``endblock``
  34. * ``while`` / ``endwhile``
  35. * ``foreach`` / ``endforeach``
  36. * ``function`` / ``endfunction``
  37. * ``macro`` / ``endmacro``
  38. Evaluating Code
  39. ^^^^^^^^^^^^^^^
  40. .. signature::
  41. cmake_language(EVAL CODE <code>...)
  42. :target: EVAL
  43. Evaluates the ``<code>...`` as CMake code.
  44. For example, the code:
  45. .. code-block:: cmake
  46. set(A TRUE)
  47. set(B TRUE)
  48. set(C TRUE)
  49. set(condition "(A AND B) OR C")
  50. cmake_language(EVAL CODE "
  51. if (${condition})
  52. message(STATUS TRUE)
  53. else()
  54. message(STATUS FALSE)
  55. endif()"
  56. )
  57. is equivalent to
  58. .. code-block:: cmake
  59. set(A TRUE)
  60. set(B TRUE)
  61. set(C TRUE)
  62. set(condition "(A AND B) OR C")
  63. file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/eval.cmake "
  64. if (${condition})
  65. message(STATUS TRUE)
  66. else()
  67. message(STATUS FALSE)
  68. endif()"
  69. )
  70. include(${CMAKE_CURRENT_BINARY_DIR}/eval.cmake)
  71. Deferring Calls
  72. ^^^^^^^^^^^^^^^
  73. .. versionadded:: 3.19
  74. .. signature::
  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
  110. will 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. .. _dependency_providers:
  161. Dependency Providers
  162. ^^^^^^^^^^^^^^^^^^^^
  163. .. versionadded:: 3.24
  164. .. note:: A high-level introduction to this feature can be found in the
  165. :ref:`Using Dependencies Guide <dependency_providers_overview>`.
  166. .. signature::
  167. cmake_language(SET_DEPENDENCY_PROVIDER <command>
  168. SUPPORTED_METHODS <methods>...)
  169. When a call is made to :command:`find_package` or
  170. :command:`FetchContent_MakeAvailable`, the call may be forwarded to a
  171. dependency provider which then has the opportunity to fulfill the request.
  172. If the request is for one of the ``<methods>`` specified when the provider
  173. was set, CMake calls the provider's ``<command>`` with a set of
  174. method-specific arguments. If the provider does not fulfill the request,
  175. or if the provider doesn't support the request's method, or no provider
  176. is set, the built-in :command:`find_package` or
  177. :command:`FetchContent_MakeAvailable` implementation is used to fulfill
  178. the request in the usual way.
  179. One or more of the following values can be specified for the ``<methods>``
  180. when setting the provider:
  181. ``FIND_PACKAGE``
  182. The provider command accepts :command:`find_package` requests.
  183. ``FETCHCONTENT_MAKEAVAILABLE_SERIAL``
  184. The provider command accepts :command:`FetchContent_MakeAvailable`
  185. requests. It expects each dependency to be fed to the provider command
  186. one at a time, not the whole list in one go.
  187. Only one provider can be set at any point in time. If a provider is already
  188. set when ``cmake_language(SET_DEPENDENCY_PROVIDER)`` is called, the new
  189. provider replaces the previously set one. The specified ``<command>`` must
  190. already exist when ``cmake_language(SET_DEPENDENCY_PROVIDER)`` is called.
  191. As a special case, providing an empty string for the ``<command>`` and no
  192. ``<methods>`` will discard any previously set provider.
  193. The dependency provider can only be set while processing one of the files
  194. specified by the :variable:`CMAKE_PROJECT_TOP_LEVEL_INCLUDES` variable.
  195. Thus, dependency providers can only be set as part of the first call to
  196. :command:`project`. Calling ``cmake_language(SET_DEPENDENCY_PROVIDER)``
  197. outside of that context will result in an error.
  198. .. note::
  199. The choice of dependency provider should always be under the user's control.
  200. As a convenience, a project may choose to provide a file that users can
  201. list in their :variable:`CMAKE_PROJECT_TOP_LEVEL_INCLUDES` variable, but
  202. the use of such a file should always be the user's choice.
  203. Provider commands
  204. """""""""""""""""
  205. Providers define a single ``<command>`` to accept requests. The name of
  206. the command should be specific to that provider, not something overly
  207. generic that another provider might also use. This enables users to compose
  208. different providers in their own custom provider. The recommended form is
  209. ``xxx_provide_dependency()``, where ``xxx`` is the provider-specific part
  210. (e.g. ``vcpkg_provide_dependency()``, ``conan_provide_dependency()``,
  211. ``ourcompany_provide_dependency()``, and so on).
  212. .. code-block:: cmake
  213. xxx_provide_dependency(<method> [<method-specific-args>...])
  214. Because some methods expect certain variables to be set in the calling scope,
  215. the provider command should typically be implemented as a macro rather than a
  216. function. This ensures it does not introduce a new variable scope.
  217. The arguments CMake passes to the dependency provider depend on the type of
  218. request. The first argument is always the method, and it will only ever
  219. be one of the ``<methods>`` that was specified when setting the provider.
  220. ``FIND_PACKAGE``
  221. The ``<method-specific-args>`` will be everything passed to the
  222. :command:`find_package` call that requested the dependency. The first of
  223. these ``<method-specific-args>`` will therefore always be the name of the
  224. dependency. Dependency names are case-sensitive for this method because
  225. :command:`find_package` treats them case-sensitively too.
  226. If the provider command fulfills the request, it must set the same variable
  227. that :command:`find_package` expects to be set. For a dependency named
  228. ``depName``, the provider must set ``depName_FOUND`` to true if it fulfilled
  229. the request. If the provider returns without setting this variable, CMake
  230. will assume the request was not fulfilled and will fall back to the
  231. built-in implementation.
  232. If the provider needs to call the built-in :command:`find_package`
  233. implementation as part of its processing, it can do so by including the
  234. ``BYPASS_PROVIDER`` keyword as one of the arguments.
  235. ``FETCHCONTENT_MAKEAVAILABE_SERIAL``
  236. The ``<method-specific-args>`` will be everything passed to the
  237. :command:`FetchContent_Declare` call that corresponds to the requested
  238. dependency, with the following exceptions:
  239. * If ``SOURCE_DIR`` or ``BINARY_DIR`` were not part of the original
  240. declared arguments, they will be added with their default values.
  241. * If :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` is set to ``NEVER``,
  242. any ``FIND_PACKAGE_ARGS`` will be omitted.
  243. * The ``OVERRIDE_FIND_PACKAGE`` keyword is always omitted.
  244. The first of the ``<method-specific-args>`` will always be the name of the
  245. dependency. Dependency names are case-insensitive for this method because
  246. :module:`FetchContent` also treats them case-insensitively.
  247. If the provider fulfills the request, it should call
  248. :command:`FetchContent_SetPopulated`, passing the name of the dependency as
  249. the first argument. The ``SOURCE_DIR`` and ``BINARY_DIR`` arguments to that
  250. command should only be given if the provider makes the dependency's source
  251. and build directories available in exactly the same way as the built-in
  252. :command:`FetchContent_MakeAvailable` command.
  253. If the provider returns without calling :command:`FetchContent_SetPopulated`
  254. for the named dependency, CMake will assume the request was not fulfilled
  255. and will fall back to the built-in implementation.
  256. Note that empty arguments may be significant for this method (e.g. an empty
  257. string following a ``GIT_SUBMODULES`` keyword). Therefore, if forwarding
  258. these arguments on to another command, extra care must be taken to avoid such
  259. arguments being silently dropped.
  260. If ``FETCHCONTENT_SOURCE_DIR_<uppercaseDepName>`` is set, then the
  261. dependency provider will never see requests for the ``<depName>`` dependency
  262. for this method. When the user sets such a variable, they are explicitly
  263. overriding where to get that dependency from and are taking on the
  264. responsibility that their overriding version meets any requirements for that
  265. dependency and is compatible with whatever else in the project uses it.
  266. Depending on the value of :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE`
  267. and whether the ``OVERRIDE_FIND_PACKAGE`` option was given to
  268. :command:`FetchContent_Declare`, having
  269. ``FETCHCONTENT_SOURCE_DIR_<uppercaseDepName>`` set may also prevent the
  270. dependency provider from seeing requests for a ``find_package(depName)``
  271. call too.
  272. Provider Examples
  273. """""""""""""""""
  274. This first example only intercepts :command:`find_package` calls. The
  275. provider command runs an external tool which copies the relevant artifacts
  276. into a provider-specific directory, if that tool knows about the dependency.
  277. It then relies on the built-in implementation to then find those artifacts.
  278. :command:`FetchContent_MakeAvailable` calls would not go through the provider.
  279. .. code-block:: cmake
  280. :caption: mycomp_provider.cmake
  281. # Always ensure we have the policy settings this provider expects
  282. cmake_minimum_required(VERSION 3.24)
  283. set(MYCOMP_PROVIDER_INSTALL_DIR ${CMAKE_BINARY_DIR}/mycomp_packages
  284. CACHE PATH "The directory this provider installs packages to"
  285. )
  286. # Tell the built-in implementation to look in our area first, unless
  287. # the find_package() call uses NO_..._PATH options to exclude it
  288. list(APPEND CMAKE_MODULE_PATH ${MYCOMP_PROVIDER_INSTALL_DIR}/cmake)
  289. list(APPEND CMAKE_PREFIX_PATH ${MYCOMP_PROVIDER_INSTALL_DIR})
  290. macro(mycomp_provide_dependency method package_name)
  291. execute_process(
  292. COMMAND some_tool ${package_name} --installdir ${MYCOMP_PROVIDER_INSTALL_DIR}
  293. COMMAND_ERROR_IS_FATAL ANY
  294. )
  295. endmacro()
  296. cmake_language(
  297. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  298. SUPPORTED_METHODS FIND_PACKAGE
  299. )
  300. The user would then typically use the above file like so::
  301. cmake -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=/path/to/mycomp_provider.cmake ...
  302. The next example demonstrates a provider that accepts both methods, but
  303. only handles one specific dependency. It enforces providing Google Test
  304. using :module:`FetchContent`, but leaves all other dependencies to be
  305. fulfilled by CMake's built-in implementation. It accepts a few different
  306. names, which demonstrates one way of working around projects that hard-code
  307. an unusual or undesirable way of adding this particular dependency to the
  308. build. The example also demonstrates how to use the :command:`list` command
  309. to preserve variables that may be overwritten by a call to
  310. :command:`FetchContent_MakeAvailable`.
  311. .. code-block:: cmake
  312. :caption: mycomp_provider.cmake
  313. cmake_minimum_required(VERSION 3.24)
  314. # Because we declare this very early, it will take precedence over any
  315. # details the project might declare later for the same thing
  316. include(FetchContent)
  317. FetchContent_Declare(
  318. googletest
  319. GIT_REPOSITORY https://github.com/google/googletest.git
  320. GIT_TAG e2239ee6043f73722e7aa812a459f54a28552929 # release-1.11.0
  321. )
  322. # Both FIND_PACKAGE and FETCHCONTENT_MAKEAVAILABLE_SERIAL methods provide
  323. # the package or dependency name as the first method-specific argument.
  324. macro(mycomp_provide_dependency method dep_name)
  325. if("${dep_name}" MATCHES "^(gtest|googletest)$")
  326. # Save our current command arguments in case we are called recursively
  327. list(APPEND mycomp_provider_args ${method} ${dep_name})
  328. # This will forward to the built-in FetchContent implementation,
  329. # which detects a recursive call for the same thing and avoids calling
  330. # the provider again if dep_name is the same as the current call.
  331. FetchContent_MakeAvailable(googletest)
  332. # Restore our command arguments
  333. list(POP_BACK mycomp_provider_args dep_name method)
  334. # Tell the caller we fulfilled the request
  335. if("${method}" STREQUAL "FIND_PACKAGE")
  336. # We need to set this if we got here from a find_package() call
  337. # since we used a different method to fulfill the request.
  338. # This example assumes projects only use the gtest targets,
  339. # not any of the variables the FindGTest module may define.
  340. set(${dep_name}_FOUND TRUE)
  341. elseif(NOT "${dep_name}" STREQUAL "googletest")
  342. # We used the same method, but were given a different name to the
  343. # one we populated with. Tell the caller about the name it used.
  344. FetchContent_SetPopulated(${dep_name}
  345. SOURCE_DIR "${googletest_SOURCE_DIR}"
  346. BINARY_DIR "${googletest_BINARY_DIR}"
  347. )
  348. endif()
  349. endif()
  350. endmacro()
  351. cmake_language(
  352. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  353. SUPPORTED_METHODS
  354. FIND_PACKAGE
  355. FETCHCONTENT_MAKEAVAILABLE_SERIAL
  356. )
  357. The final example demonstrates how to modify arguments to a
  358. :command:`find_package` call. It forces all such calls to have the
  359. ``QUIET`` keyword. It uses the ``BYPASS_PROVIDER`` keyword to prevent
  360. calling the provider command recursively for the same dependency.
  361. .. code-block:: cmake
  362. :caption: mycomp_provider.cmake
  363. cmake_minimum_required(VERSION 3.24)
  364. macro(mycomp_provide_dependency method)
  365. find_package(${ARGN} BYPASS_PROVIDER QUIET)
  366. endmacro()
  367. cmake_language(
  368. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  369. SUPPORTED_METHODS FIND_PACKAGE
  370. )
  371. Getting current message log level
  372. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  373. .. versionadded:: 3.25
  374. .. _query_message_log_level:
  375. .. signature::
  376. cmake_language(GET_MESSAGE_LOG_LEVEL <output_variable>)
  377. Writes the current :command:`message` logging level
  378. into the given ``<output_variable>``.
  379. See :command:`message` for the possible logging levels.
  380. The current message logging level can be set either using the
  381. :option:`--log-level <cmake --log-level>`
  382. command line option of the :manual:`cmake(1)` program or using
  383. the :variable:`CMAKE_MESSAGE_LOG_LEVEL` variable.
  384. If both the command line option and the variable are set, the command line
  385. option takes precedence. If neither are set, the default logging level
  386. is returned.