AtWithVariableAtOnly.cmake 172 B

12345678
  1. set(right "wrong")
  2. set(var "\${right}")
  3. # Expanded here.
  4. set(ref "@var@")
  5. # No dereference done at all.
  6. string(CONFIGURE "${ref}" output @ONLY)
  7. message("-->${output}<--")