CMP0053-At-OLD.cmake 187 B

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