cmake_policy.rst 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. cmake_policy
  2. ------------
  3. Manage CMake Policy settings. See the :manual:`cmake-policies(7)`
  4. manual for defined policies.
  5. As CMake evolves it is sometimes necessary to change existing behavior
  6. in order to fix bugs or improve implementations of existing features.
  7. The CMake Policy mechanism is designed to help keep existing projects
  8. building as new versions of CMake introduce changes in behavior. Each
  9. new policy (behavioral change) is given an identifier of the form
  10. ``CMP<NNNN>`` where ``<NNNN>`` is an integer index. Documentation
  11. associated with each policy describes the ``OLD`` and ``NEW`` behavior
  12. and the reason the policy was introduced. Projects may set each policy
  13. to select the desired behavior. When CMake needs to know which behavior
  14. to use it checks for a setting specified by the project. If no
  15. setting is available the ``OLD`` behavior is assumed and a warning is
  16. produced requesting that the policy be set.
  17. Setting Policies by CMake Version
  18. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  19. The ``cmake_policy`` command is used to set policies to ``OLD`` or ``NEW``
  20. behavior. While setting policies individually is supported, we
  21. encourage projects to set policies based on CMake versions:
  22. .. signature:: cmake_policy(VERSION <min>[...<max>])
  23. :target: VERSION
  24. .. versionadded:: 3.12
  25. The optional ``<max>`` version.
  26. ``<min>`` and the optional ``<max>`` are each CMake versions of the form
  27. ``major.minor[.patch[.tweak]]``, and the ``...`` is literal. The ``<min>``
  28. version must be at least ``2.4`` and at most the running version of CMake.
  29. The ``<max>`` version, if specified, must be at least the ``<min>`` version
  30. but may exceed the running version of CMake. If the running version of
  31. CMake is older than 3.12, the extra ``...`` dots will be seen as version
  32. component separators, resulting in the ``...<max>`` part being ignored and
  33. preserving the pre-3.12 behavior of basing policies on ``<min>``.
  34. .. include:: include/POLICY_VERSION.rst
  35. Note that the :command:`cmake_minimum_required(VERSION)`
  36. command implicitly calls ``cmake_policy(VERSION)`` too.
  37. .. include:: include/DEPRECATED_POLICY_VERSIONS.rst
  38. Setting Policies Explicitly
  39. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  40. .. signature:: cmake_policy(SET CMP<NNNN> NEW|OLD)
  41. :target: SET
  42. Tell CMake to use the ``OLD`` or ``NEW`` behavior for a given policy.
  43. Projects depending on the old behavior of a given policy may silence a
  44. policy warning by setting the policy state to ``OLD``. Alternatively
  45. one may fix the project to work with the new behavior and set the
  46. policy state to ``NEW``.
  47. .. include:: ../policy/include/DEPRECATED.rst
  48. Checking Policy Settings
  49. ^^^^^^^^^^^^^^^^^^^^^^^^
  50. .. signature:: cmake_policy(GET CMP<NNNN> <variable>)
  51. :target: GET
  52. Check whether a given policy is set to ``OLD`` or ``NEW`` behavior.
  53. The output ``<variable>`` value will be ``OLD`` or ``NEW`` if the
  54. policy is set, and empty otherwise.
  55. CMake Policy Stack
  56. ^^^^^^^^^^^^^^^^^^
  57. CMake keeps policy settings on a stack, so changes made by the
  58. ``cmake_policy`` command affect only the top of the stack. A new entry on
  59. the policy stack is managed automatically for each subdirectory to
  60. protect its parents and siblings. CMake also manages a new entry for
  61. scripts loaded by :command:`include` and :command:`find_package` commands
  62. except when invoked with the ``NO_POLICY_SCOPE`` option
  63. (see also policy :policy:`CMP0011`).
  64. The ``cmake_policy`` command provides an interface to manage custom
  65. entries on the policy stack:
  66. .. signature:: cmake_policy(PUSH)
  67. :target: PUSH
  68. Create a new entry on the policy stack.
  69. .. signature:: cmake_policy(POP)
  70. :target: POP
  71. Remove the last policy stack entry created with ``cmake_policy(PUSH)``.
  72. Each ``PUSH`` must have a matching ``POP`` to erase any changes.
  73. This is useful to make temporary changes to policy settings.
  74. Calls to the :command:`cmake_minimum_required(VERSION)`,
  75. :command:`cmake_policy(VERSION)`, or :command:`cmake_policy(SET)` commands
  76. influence only the current top of the policy stack.
  77. .. versionadded:: 3.25
  78. The :command:`block(SCOPE_FOR POLICIES)` command offers a more flexible
  79. and more secure way to manage the policy stack. The pop action is done
  80. automatically when leaving the block scope, so there is no need to
  81. precede each :command:`return` with a call to :command:`cmake_policy(POP)`.
  82. .. code-block:: cmake
  83. # stack management with cmake_policy()
  84. function(my_func)
  85. cmake_policy(PUSH)
  86. cmake_policy(SET ...)
  87. if (<cond1>)
  88. ...
  89. cmake_policy(POP)
  90. return()
  91. elseif(<cond2>)
  92. ...
  93. cmake_policy(POP)
  94. return()
  95. endif()
  96. ...
  97. cmake_policy(POP)
  98. endfunction()
  99. # stack management with block()/endblock()
  100. function(my_func)
  101. block(SCOPE_FOR POLICIES)
  102. cmake_policy(SET ...)
  103. if (<cond1>)
  104. ...
  105. return()
  106. elseif(<cond2>)
  107. ...
  108. return()
  109. endif()
  110. ...
  111. endblock()
  112. endfunction()
  113. Commands created by the :command:`function` and :command:`macro`
  114. commands record policy settings when they are created and
  115. use the pre-record policies when they are invoked. If the function or
  116. macro implementation sets policies, the changes automatically
  117. propagate up through callers until they reach the closest nested
  118. policy stack entry.
  119. See Also
  120. ^^^^^^^^
  121. * :command:`cmake_minimum_required`