PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` variable_watch -------------- Watch the CMake variable for change. .. code-block:: cmake variable_watch( []) If the specified ```` changes and no ```` is given, a message will be printed to inform about the change. If ```` is given, this command will be executed instead. The command will receive the following arguments: ``COMMAND( )`` ```` Name of the variable being accessed. ```` One of ``READ_ACCESS``, ``UNKNOWN_READ_ACCESS``, ``MODIFIED_ACCESS``, ``UNKNOWN_MODIFIED_ACCESS``, or ``REMOVED_ACCESS``. The ``UNKNOWN_`` values are only used when the variable has never been set. Once set, they are never used again during the same CMake run, even if the variable is later unset. ```` The value of the variable. On a modification, this is the new (modified) value of the variable. On removal, the value is empty. ```` Full path to the file doing the access. ```` List of absolute paths of all files currently on the stack of file inclusion, with the bottom-most file first and the currently processed file (that is, ``current_list_file``) last. Note that for some accesses such as :command:`list(APPEND)`, the watcher is executed twice, first with a read access and then with a write one. Also note that an :command:`if(DEFINED)` query on the variable does not register as an access and the watcher is not executed. Only non-cache variables can be watched using this command. Access to cache variables is never watched. However, the existence of a cache variable ``var`` causes accesses to the non-cache variable ``var`` to not use the ``UNKNOWN_`` prefix, even if a non-cache variable ``var`` has never existed.