Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
02cf404ace01ac4ea7a078dca75a817f95c3bdd3
/
.
/
Tests
/
RunCMake
/
Syntax
/
AtWithVariableAtOnly.cmake
blob: e06484c226ef62e83129f1d928aa761fe2ca8c70 [
file
]
set
(
right
"wrong"
)
set
(
var
"\${right}"
)
# Expanded here.
set
(
ref
"@var@"
)
# No dereference done at all.
string
(
CONFIGURE
"${ref}"
output
@ONLY
)
message
(
"-->${output}<--"
)