CMP0053-At-WARN-newlines-stderr.txt 668 B

123456789101112131415161718192021222324252627
  1. ^CMake Warning \(dev\) at CMP0053-At-WARN-newlines.cmake:4 \(set\):
  2. Policy CMP0053 is not set: Simplify variable reference and escape sequence
  3. evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
  4. cmake_policy command to set the policy and suppress this warning.
  5. For input:
  6. '
  7. @var@
  8. '
  9. the old evaluation rules produce:
  10. '
  11. \${right}
  12. '
  13. but the new evaluation rules produce:
  14. '
  15. @var@
  16. '
  17. Using the old result for compatibility since the policy is not set.
  18. Call Stack \(most recent call first\):
  19. CMakeLists.txt:3 \(include\)
  20. This warning is for project developers. Use -Wno-dev to suppress it.$