Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
485256f2d06f2e9bd31300a7f2013b607b322c21
/
.
/
Tests
/
RunCMake
/
set
/
ParentPulling.cmake
blob: 5649cb2fd1d45ba227d3c8ce7721f88b67d07fd0 [
file
]
function
(
test_set
)
set
(
blah
"value2"
)
message
(
"before PARENT_SCOPE blah=${blah}"
)
set
(
blah $
{
blah
}
PARENT_SCOPE
)
message
(
"after PARENT_SCOPE blah=${blah}"
)
endfunction
()
set
(
blah value1
)
test_set
()
message
(
"in parent scope, blah=${blah}"
)