You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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}")
|