
Every policy's documentation has a paragraph on what version of CMake introduced it, how to set the policy, and whether CMake warns if the policy is not set. The wording of this paragraph has diverged across policies over time. Factor the paragraph out into a standard advice document included by every policy.
24 lines
801 B
ReStructuredText
24 lines
801 B
ReStructuredText
CMP0094
|
|
-------
|
|
|
|
.. versionadded:: 3.15
|
|
|
|
Modules :module:`FindPython3`, :module:`FindPython2` and :module:`FindPython`
|
|
use ``LOCATION`` for lookup strategy.
|
|
|
|
Starting with CMake 3.15, Modules :module:`FindPython3`, :module:`FindPython2`
|
|
and :module:`FindPython` set value ``LOCATION`` for, respectively, variables
|
|
``Python3_FIND_STRATEGY``, ``Python2_FIND_STRATEGY`` and
|
|
``Python_FIND_STRATEGY``. This policy provides compatibility with projects that
|
|
expect the legacy behavior.
|
|
|
|
The ``OLD`` behavior for this policy set value ``VERSION`` for variables
|
|
``Python3_FIND_STRATEGY``, ``Python2_FIND_STRATEGY`` and
|
|
``Python_FIND_STRATEGY``.
|
|
|
|
.. |INTRODUCED_IN_CMAKE_VERSION| replace:: 3.15
|
|
.. |WARNS_OR_DOES_NOT_WARN| replace:: does *not* warn
|
|
.. include:: STANDARD_ADVICE.txt
|
|
|
|
.. include:: DEPRECATED.txt
|