Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
RunCMake
/
MaxRecursionDepth
/
variable_watch.cmake
blob: b3c7b8dfed3a683a4ec604fca3527cab96648348 [
file
] [
log
] [
blame
] [
edit
]
function
(
update_x
)
message
(
"${x}"
)
math
(
EXPR y
"${x} + 2"
)
variable_watch
(
x update_x
)
set
(
x
"${y}"
)
endfunction
()
variable_watch
(
x update_x
)
set
(
x
4
)