https://github.com/Kitware/CMake
Raw File
Tip revision: 3b4bd019ffb088bbf34fbdbc7512a086d652c7d4 authored by Brad King on 14 June 2022, 16:11:11 UTC
CMake 3.24.0-rc1
Tip revision: 3b4bd01
CMP0053-OLD.cmake
cmake_policy(SET CMP0053 OLD)

function (watch_callback)
  message("called")
endfunction ()

variable_watch(test watch_callback)
message("-->${test}<--")
back to top