CMP0026.rst 1.1 KB

12345678910111213141516171819202122232425
  1. CMP0026
  2. -------
  3. Disallow use of the LOCATION target property.
  4. CMake 2.8.12 and lower allowed reading the LOCATION target property to
  5. determine the eventual location of build targets. This relies on the
  6. assumption that all necessary information is available at
  7. configure-time to determine the final location and filename of the
  8. target. However, this property is not fully determined until later at
  9. generate-time. At generate time, the $<TARGET_FILE> generator
  10. expression can be used to determine the eventual LOCATION of a target
  11. output.
  12. Code which reads the LOCATION target property can be ported to use the
  13. $<TARGET_FILE> generator expression together with the file(GENERATE)
  14. subcommand to generate a file containing the target location.
  15. The OLD behavior for this policy is to allow reading the LOCATION
  16. property from build-targets. The NEW behavior for this policy is to
  17. not to allow reading the LOCATION property from build-targets.
  18. This policy was introduced in CMake version 3.0.0. CMake version
  19. |release| warns when the policy is not set and uses OLD behavior. Use
  20. the cmake_policy command to set it to OLD or NEW explicitly.