CMP0112 — CMake 4.0.1 Documentation (original) (raw)

Added in version 3.19.

Target file component generator expressions do not add target dependencies.

The following target-based generator expressions that query for directory or file name components no longer add a dependency on the evaluated target.

In CMake 3.18 and lower a dependency on the evaluated target of the above generator expressions would always be added. CMake 3.19 and above prefer to not add this dependency. This policy provides compatibility for projects that have not been updated to expect the new behavior. The policy setting is recorded on each target when it is created, and decides whether generator expressions referencing that target imply a dependency on it.

The OLD behavior for this policy is to add a dependency on the evaluated target for the above generator expressions. The NEW behavior of this policy is to not add a dependency on the evaluated target for the above generator expressions.

This policy was introduced in CMake version 3.19. It may be set by cmake_policy() or cmake_minimum_required(). If it is not set, CMake does not warn by default, and uses OLD behavior.

See documentation of theCMAKE_POLICY_WARNING_CMP0112variable to control the warning.