CMP0019.rst 889 B

12345678910111213141516171819202122
  1. CMP0019
  2. -------
  3. Do not re-expand variables in include and link information.
  4. CMake 2.8.10 and lower re-evaluated values given to the
  5. include_directories, link_directories, and link_libraries commands to
  6. expand any leftover variable references at the end of the
  7. configuration step. This was for strict compatibility with VERY early
  8. CMake versions because all variable references are now normally
  9. evaluated during CMake language processing. CMake 2.8.11 and higher
  10. prefer to skip the extra evaluation.
  11. The OLD behavior for this policy is to re-evaluate the values for
  12. strict compatibility. The NEW behavior for this policy is to leave
  13. the values untouched.
  14. This policy was introduced in CMake version 2.8.11. CMake version
  15. |release| warns when the policy is not set and uses OLD behavior. Use
  16. the cmake_policy command to set it to OLD or NEW explicitly.
  17. .. include:: DEPRECATED.txt