summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/variable_watch/ModifyWatchInCallback.cmake
blob: 1dee8375a577630397279d3afdec9701e3ff1c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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}")