cmake_language.rst 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  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. .. versionadded:: 3.30
  200. The :prop_gbl:`PROPAGATE_TOP_LEVEL_INCLUDES_TO_TRY_COMPILE` global
  201. property can be set if the dependency provider also wants to be enabled
  202. in whole-project calls to :command:`try_compile`.
  203. .. note::
  204. The choice of dependency provider should always be under the user's control.
  205. As a convenience, a project may choose to provide a file that users can
  206. list in their :variable:`CMAKE_PROJECT_TOP_LEVEL_INCLUDES` variable, but
  207. the use of such a file should always be the user's choice.
  208. Provider commands
  209. """""""""""""""""
  210. Providers define a single ``<command>`` to accept requests. The name of
  211. the command should be specific to that provider, not something overly
  212. generic that another provider might also use. This enables users to compose
  213. different providers in their own custom provider. The recommended form is
  214. ``xxx_provide_dependency()``, where ``xxx`` is the provider-specific part
  215. (e.g. ``vcpkg_provide_dependency()``, ``conan_provide_dependency()``,
  216. ``ourcompany_provide_dependency()``, and so on).
  217. .. code-block:: cmake
  218. xxx_provide_dependency(<method> [<method-specific-args>...])
  219. Because some methods expect certain variables to be set in the calling scope,
  220. the provider command should typically be implemented as a macro rather than a
  221. function. This ensures it does not introduce a new variable scope.
  222. The arguments CMake passes to the dependency provider depend on the type of
  223. request. The first argument is always the method, and it will only ever
  224. be one of the ``<methods>`` that was specified when setting the provider.
  225. ``FIND_PACKAGE``
  226. The ``<method-specific-args>`` will be everything passed to the
  227. :command:`find_package` call that requested the dependency. The first of
  228. these ``<method-specific-args>`` will therefore always be the name of the
  229. dependency. Dependency names are case-sensitive for this method because
  230. :command:`find_package` treats them case-sensitively too.
  231. If the provider command fulfills the request, it must set the same variable
  232. that :command:`find_package` expects to be set. For a dependency named
  233. ``depName``, the provider must set ``depName_FOUND`` to true if it fulfilled
  234. the request. If the provider returns without setting this variable, CMake
  235. will assume the request was not fulfilled and will fall back to the
  236. built-in implementation.
  237. If the provider needs to call the built-in :command:`find_package`
  238. implementation as part of its processing, it can do so by including the
  239. ``BYPASS_PROVIDER`` keyword as one of the arguments.
  240. ``FETCHCONTENT_MAKEAVAILABLE_SERIAL``
  241. The ``<method-specific-args>`` will be everything passed to the
  242. :command:`FetchContent_Declare` call that corresponds to the requested
  243. dependency, with the following exceptions:
  244. * If ``SOURCE_DIR`` or ``BINARY_DIR`` were not part of the original
  245. declared arguments, they will be added with their default values.
  246. * If :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` is set to ``NEVER``,
  247. any ``FIND_PACKAGE_ARGS`` will be omitted.
  248. * The ``OVERRIDE_FIND_PACKAGE`` keyword is always omitted.
  249. The first of the ``<method-specific-args>`` will always be the name of the
  250. dependency. Dependency names are case-insensitive for this method because
  251. :module:`FetchContent` also treats them case-insensitively.
  252. If the provider fulfills the request, it should call
  253. :command:`FetchContent_SetPopulated`, passing the name of the dependency as
  254. the first argument. The ``SOURCE_DIR`` and ``BINARY_DIR`` arguments to that
  255. command should only be given if the provider makes the dependency's source
  256. and build directories available in exactly the same way as the built-in
  257. :command:`FetchContent_MakeAvailable` command.
  258. If the provider returns without calling :command:`FetchContent_SetPopulated`
  259. for the named dependency, CMake will assume the request was not fulfilled
  260. and will fall back to the built-in implementation.
  261. Note that empty arguments may be significant for this method (e.g. an empty
  262. string following a ``GIT_SUBMODULES`` keyword). Therefore, if forwarding
  263. these arguments on to another command, extra care must be taken to avoid such
  264. arguments being silently dropped.
  265. If ``FETCHCONTENT_SOURCE_DIR_<uppercaseDepName>`` is set, then the
  266. dependency provider will never see requests for the ``<depName>`` dependency
  267. for this method. When the user sets such a variable, they are explicitly
  268. overriding where to get that dependency from and are taking on the
  269. responsibility that their overriding version meets any requirements for that
  270. dependency and is compatible with whatever else in the project uses it.
  271. Depending on the value of :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE`
  272. and whether the ``OVERRIDE_FIND_PACKAGE`` option was given to
  273. :command:`FetchContent_Declare`, having
  274. ``FETCHCONTENT_SOURCE_DIR_<uppercaseDepName>`` set may also prevent the
  275. dependency provider from seeing requests for a ``find_package(depName)``
  276. call too.
  277. Provider Examples
  278. """""""""""""""""
  279. This first example only intercepts :command:`find_package` calls. The
  280. provider command runs an external tool which copies the relevant artifacts
  281. into a provider-specific directory, if that tool knows about the dependency.
  282. It then relies on the built-in implementation to then find those artifacts.
  283. :command:`FetchContent_MakeAvailable` calls would not go through the provider.
  284. .. code-block:: cmake
  285. :caption: mycomp_provider.cmake
  286. # Always ensure we have the policy settings this provider expects
  287. cmake_minimum_required(VERSION 3.24)
  288. set(MYCOMP_PROVIDER_INSTALL_DIR ${CMAKE_BINARY_DIR}/mycomp_packages
  289. CACHE PATH "The directory this provider installs packages to"
  290. )
  291. # Tell the built-in implementation to look in our area first, unless
  292. # the find_package() call uses NO_..._PATH options to exclude it
  293. list(APPEND CMAKE_MODULE_PATH ${MYCOMP_PROVIDER_INSTALL_DIR}/cmake)
  294. list(APPEND CMAKE_PREFIX_PATH ${MYCOMP_PROVIDER_INSTALL_DIR})
  295. macro(mycomp_provide_dependency method package_name)
  296. execute_process(
  297. COMMAND some_tool ${package_name} --installdir ${MYCOMP_PROVIDER_INSTALL_DIR}
  298. COMMAND_ERROR_IS_FATAL ANY
  299. )
  300. endmacro()
  301. cmake_language(
  302. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  303. SUPPORTED_METHODS FIND_PACKAGE
  304. )
  305. The user would then typically use the above file like so::
  306. cmake -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=/path/to/mycomp_provider.cmake ...
  307. The next example demonstrates a provider that accepts both methods, but
  308. only handles one specific dependency. It enforces providing Google Test
  309. using :module:`FetchContent`, but leaves all other dependencies to be
  310. fulfilled by CMake's built-in implementation. It accepts a few different
  311. names, which demonstrates one way of working around projects that hard-code
  312. an unusual or undesirable way of adding this particular dependency to the
  313. build. The example also demonstrates how to use the :command:`list` command
  314. to preserve variables that may be overwritten by a call to
  315. :command:`FetchContent_MakeAvailable`.
  316. .. code-block:: cmake
  317. :caption: mycomp_provider.cmake
  318. cmake_minimum_required(VERSION 3.24)
  319. # Because we declare this very early, it will take precedence over any
  320. # details the project might declare later for the same thing
  321. include(FetchContent)
  322. FetchContent_Declare(
  323. googletest
  324. GIT_REPOSITORY https://github.com/google/googletest.git
  325. GIT_TAG e2239ee6043f73722e7aa812a459f54a28552929 # release-1.11.0
  326. )
  327. # Both FIND_PACKAGE and FETCHCONTENT_MAKEAVAILABLE_SERIAL methods provide
  328. # the package or dependency name as the first method-specific argument.
  329. macro(mycomp_provide_dependency method dep_name)
  330. if("${dep_name}" MATCHES "^(gtest|googletest)$")
  331. # Save our current command arguments in case we are called recursively
  332. list(APPEND mycomp_provider_args ${method} ${dep_name})
  333. # This will forward to the built-in FetchContent implementation,
  334. # which detects a recursive call for the same thing and avoids calling
  335. # the provider again if dep_name is the same as the current call.
  336. FetchContent_MakeAvailable(googletest)
  337. # Restore our command arguments
  338. list(POP_BACK mycomp_provider_args dep_name method)
  339. # Tell the caller we fulfilled the request
  340. if("${method}" STREQUAL "FIND_PACKAGE")
  341. # We need to set this if we got here from a find_package() call
  342. # since we used a different method to fulfill the request.
  343. # This example assumes projects only use the gtest targets,
  344. # not any of the variables the FindGTest module may define.
  345. set(${dep_name}_FOUND TRUE)
  346. elseif(NOT "${dep_name}" STREQUAL "googletest")
  347. # We used the same method, but were given a different name to the
  348. # one we populated with. Tell the caller about the name it used.
  349. FetchContent_SetPopulated(${dep_name}
  350. SOURCE_DIR "${googletest_SOURCE_DIR}"
  351. BINARY_DIR "${googletest_BINARY_DIR}"
  352. )
  353. endif()
  354. endif()
  355. endmacro()
  356. cmake_language(
  357. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  358. SUPPORTED_METHODS
  359. FIND_PACKAGE
  360. FETCHCONTENT_MAKEAVAILABLE_SERIAL
  361. )
  362. The final example demonstrates how to modify arguments to a
  363. :command:`find_package` call. It forces all such calls to have the
  364. ``QUIET`` keyword. It uses the ``BYPASS_PROVIDER`` keyword to prevent
  365. calling the provider command recursively for the same dependency.
  366. .. code-block:: cmake
  367. :caption: mycomp_provider.cmake
  368. cmake_minimum_required(VERSION 3.24)
  369. macro(mycomp_provide_dependency method)
  370. find_package(${ARGN} BYPASS_PROVIDER QUIET)
  371. endmacro()
  372. cmake_language(
  373. SET_DEPENDENCY_PROVIDER mycomp_provide_dependency
  374. SUPPORTED_METHODS FIND_PACKAGE
  375. )
  376. Getting current message log level
  377. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  378. .. versionadded:: 3.25
  379. .. _query_message_log_level:
  380. .. signature::
  381. cmake_language(GET_MESSAGE_LOG_LEVEL <output_variable>)
  382. Writes the current :command:`message` logging level
  383. into the given ``<output_variable>``.
  384. See :command:`message` for the possible logging levels.
  385. The current message logging level can be set either using the
  386. :option:`--log-level <cmake --log-level>`
  387. command line option of the :manual:`cmake(1)` program or using
  388. the :variable:`CMAKE_MESSAGE_LOG_LEVEL` variable.
  389. If both the command line option and the variable are set, the command line
  390. option takes precedence. If neither are set, the default logging level
  391. is returned.
  392. Terminating Scripts
  393. ^^^^^^^^^^^^^^^^^^^
  394. .. versionadded:: 3.29
  395. .. signature::
  396. cmake_language(EXIT <exit-code>)
  397. Terminate the current :option:`cmake -P` script and exit with ``<exit-code>``.
  398. This command works only in :ref:`script mode <Script Processing Mode>`.
  399. If used outside of that context, it will cause a fatal error.
  400. The ``<exit-code>`` should be non-negative.
  401. If ``<exit-code>`` is negative, then the behavior
  402. is unspecified (e.g., on Windows the error code -1
  403. becomes ``0xffffffff``, and on Linux it becomes 255).
  404. Exit codes above 255 may not be supported by the underlying
  405. shell or platform, and some shells may interpret values
  406. above 125 specially. Therefore, it is advisable to only
  407. specify an ``<exit-code>`` in the range 0 to 125.