cmake_language.rst 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  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. cmake_language(`EXIT`_ <exit-code>)
  14. Introduction
  15. ^^^^^^^^^^^^
  16. This command will call meta-operations on built-in CMake commands or
  17. those created via the :command:`macro` or :command:`function` commands.
  18. ``cmake_language`` does not introduce a new variable or policy scope.
  19. Calling Commands
  20. ^^^^^^^^^^^^^^^^
  21. .. signature::
  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. .. signature::
  42. cmake_language(EVAL CODE <code>...)
  43. :target: EVAL
  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. .. signature::
  76. cmake_language(DEFER <options>... CALL <command> [<arg>...])
  77. Schedules a call to the named ``<command>`` with the given arguments (if any)
  78. to occur at a later time. By default, deferred calls are executed as if
  79. written at the end of the current directory's ``CMakeLists.txt`` file,
  80. except that they run even after a :command:`return` call. Variable
  81. references in arguments are evaluated at the time the deferred call is
  82. executed.
  83. The options are:
  84. ``DIRECTORY <dir>``
  85. Schedule the call for the end of the given directory instead of the
  86. current directory. The ``<dir>`` may reference either a source
  87. directory or its corresponding binary directory. Relative paths are
  88. treated as relative to the current source directory.
  89. The given directory must be known to CMake, being either the top-level
  90. directory or one added by :command:`add_subdirectory`. Furthermore,
  91. the given directory must not yet be finished processing. This means
  92. it can be the current directory or one of its ancestors.
  93. ``ID <id>``
  94. Specify an identification for the deferred call.
  95. The ``<id>`` may not be empty and may not begin with a capital letter ``A-Z``.
  96. The ``<id>`` may begin with an underscore (``_``) only if it was generated
  97. automatically by an earlier call that used ``ID_VAR`` to get the id.
  98. ``ID_VAR <var>``
  99. Specify a variable in which to store the identification for the
  100. deferred call. If ``ID <id>`` is not given, a new identification
  101. will be generated and the generated id will start with an underscore (``_``).
  102. The currently scheduled list of deferred calls may be retrieved:
  103. .. code-block:: cmake
  104. cmake_language(DEFER [DIRECTORY <dir>] GET_CALL_IDS <var>)
  105. This will store in ``<var>`` a :ref:`semicolon-separated list <CMake Language
  106. Lists>` of deferred call ids. The ids are for the directory scope in which
  107. the calls have been deferred to (i.e. where they will be executed), which can
  108. be different to the scope in which they were created. The ``DIRECTORY``
  109. option can be used to specify the scope for which to retrieve the call ids.
  110. If that option is not given, the call ids for the current directory scope
  111. will be returned.
  112. Details of a specific call may be retrieved from its id:
  113. .. code-block:: cmake
  114. cmake_language(DEFER [DIRECTORY <dir>] GET_CALL <id> <var>)
  115. This will store in ``<var>`` a :ref:`semicolon-separated list <CMake Language
  116. Lists>` in which the first element is the name of the command to be
  117. called, and the remaining elements are its unevaluated arguments (any
  118. contained ``;`` characters are included literally and cannot be distinguished
  119. from multiple arguments). If multiple calls are scheduled with the same id,
  120. this retrieves the first one. If no call is scheduled with the given id in
  121. the specified ``DIRECTORY`` scope (or the current directory scope if no
  122. ``DIRECTORY`` option is given), this stores an empty string in the variable.
  123. Deferred calls may be canceled by their id:
  124. .. code-block:: cmake
  125. cmake_language(DEFER [DIRECTORY <dir>] CANCEL_CALL <id>...)
  126. This cancels all deferred calls matching any of the given ids in the specified
  127. ``DIRECTORY`` scope (or the current directory scope if no ``DIRECTORY`` option
  128. is given). Unknown ids are silently ignored.
  129. Deferred Call Examples
  130. """"""""""""""""""""""
  131. For example, the code:
  132. .. code-block:: cmake
  133. cmake_language(DEFER CALL message "${deferred_message}")
  134. cmake_language(DEFER ID_VAR id CALL message "Canceled Message")
  135. cmake_language(DEFER CANCEL_CALL ${id})
  136. message("Immediate Message")
  137. set(deferred_message "Deferred Message")
  138. prints::
  139. Immediate Message
  140. Deferred Message
  141. The ``Canceled Message`` is never printed because its command is
  142. canceled. The ``deferred_message`` variable reference is not evaluated
  143. until the call site, so it can be set after the deferred call is scheduled.
  144. In order to evaluate variable references immediately when scheduling a
  145. deferred call, wrap it using ``cmake_language(EVAL)``. However, note that
  146. arguments will be re-evaluated in the deferred call, though that can be
  147. avoided by using bracket arguments. For example:
  148. .. code-block:: cmake
  149. set(deferred_message "Deferred Message 1")
  150. set(re_evaluated [[${deferred_message}]])
  151. cmake_language(EVAL CODE "
  152. cmake_language(DEFER CALL message [[${deferred_message}]])
  153. cmake_language(DEFER CALL message \"${re_evaluated}\")
  154. ")
  155. message("Immediate Message")
  156. set(deferred_message "Deferred Message 2")
  157. also prints::
  158. Immediate Message
  159. Deferred Message 1
  160. Deferred Message 2
  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. .. signature::
  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_MAKEAVAILABLE_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. )
  372. Getting current message log level
  373. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  374. .. versionadded:: 3.25
  375. .. _query_message_log_level:
  376. .. signature::
  377. cmake_language(GET_MESSAGE_LOG_LEVEL <output_variable>)
  378. Writes the current :command:`message` logging level
  379. into the given ``<output_variable>``.
  380. See :command:`message` for the possible logging levels.
  381. The current message logging level can be set either using the
  382. :option:`--log-level <cmake --log-level>`
  383. command line option of the :manual:`cmake(1)` program or using
  384. the :variable:`CMAKE_MESSAGE_LOG_LEVEL` variable.
  385. If both the command line option and the variable are set, the command line
  386. option takes precedence. If neither are set, the default logging level
  387. is returned.
  388. Terminating Scripts
  389. ^^^^^^^^^^^^^^^^^^^
  390. .. versionadded:: 3.29
  391. .. signature::
  392. cmake_language(EXIT <exit-code>)
  393. Terminate the current :option:`cmake -P` script and exit with ``<exit-code>``.
  394. This command works only in :ref:`script mode <Script Processing Mode>`.
  395. The ``<exit-code>`` should be non-negative.
  396. If ``<exit-code>`` is negative then the behavior
  397. is unspecified (e.g., on Windows the error code -1
  398. becomes ``0xffffffff``, and on Linux it becomes ``255``).