mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
This tests adding a variable_watch inside the callback to an existing callback
18 lines
355 B
CMake
18 lines
355 B
CMake
function (watch2)
|
|
|
|
endfunction ()
|
|
|
|
function (watch1)
|
|
variable_watch(watched watch2)
|
|
variable_watch(watched watch2)
|
|
variable_watch(watched watch2)
|
|
variable_watch(watched watch2)
|
|
variable_watch(watched watch2)
|
|
variable_watch(watched watch2)
|
|
endfunction ()
|
|
|
|
variable_watch(watched watch1)
|
|
variable_watch(watched watch2)
|
|
|
|
set(access "${watched}")
|