mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 05:11:15 -06:00
This was overlooked in the initial implementation of CMP0053. However, an additional policy to reject it again is not worth it. Instead, add tests and document the behavior. Fixes: #17883
7 lines
110 B
CMake
7 lines
110 B
CMake
cmake_policy(SET CMP0053 OLD)
|
|
|
|
set($ value)
|
|
set(dollar $)
|
|
message("-->${${dollar}}<--")
|
|
message("-->${$}<--")
|