mirror of
https://github.com/reactos/CMake.git
synced 2025-03-06 10:58:49 +00:00

Before this change, install rules created by add_subdirectory() would be executed after all of the top-level install rules, even if they were declared before the top-level rules. This change adds a new policy, CMP0082, which interleaves the add_subdirectory() install rules with the other install rules so they are run in the correct order.
30 lines
1.2 KiB
ReStructuredText
30 lines
1.2 KiB
ReStructuredText
CMAKE_POLICY_WARNING_CMP<NNNN>
|
|
------------------------------
|
|
|
|
Explicitly enable or disable the warning when CMake Policy ``CMP<NNNN>``
|
|
is not set. This is meaningful only for the few policies that do not
|
|
warn by default:
|
|
|
|
* ``CMAKE_POLICY_WARNING_CMP0025`` controls the warning for
|
|
policy :policy:`CMP0025`.
|
|
* ``CMAKE_POLICY_WARNING_CMP0047`` controls the warning for
|
|
policy :policy:`CMP0047`.
|
|
* ``CMAKE_POLICY_WARNING_CMP0056`` controls the warning for
|
|
policy :policy:`CMP0056`.
|
|
* ``CMAKE_POLICY_WARNING_CMP0060`` controls the warning for
|
|
policy :policy:`CMP0060`.
|
|
* ``CMAKE_POLICY_WARNING_CMP0065`` controls the warning for
|
|
policy :policy:`CMP0065`.
|
|
* ``CMAKE_POLICY_WARNING_CMP0066`` controls the warning for
|
|
policy :policy:`CMP0066`.
|
|
* ``CMAKE_POLICY_WARNING_CMP0067`` controls the warning for
|
|
policy :policy:`CMP0067`.
|
|
* ``CMAKE_POLICY_WARNING_CMP0082`` controls the warning for
|
|
policy :policy:`CMP0082`.
|
|
|
|
This variable should not be set by a project in CMake code. Project
|
|
developers running CMake may set this variable in their cache to
|
|
enable the warning (e.g. ``-DCMAKE_POLICY_WARNING_CMP<NNNN>=ON``).
|
|
Alternatively, running :manual:`cmake(1)` with the ``--debug-output``,
|
|
``--trace``, or ``--trace-expand`` option will also enable the warning.
|