CMP0053-At-NEW.cmake 191 B

123456789
  1. cmake_policy(SET CMP0053 NEW)
  2. set(right "wrong")
  3. set(var "\${right}")
  4. # Not expanded here with the new policy.
  5. set(ref "@var@")
  6. string(CONFIGURE "${ref}" output)
  7. message("-->${output}<--")