cmake/Help/command/unset.rst

26 lines
621 B
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
unset
-----
Unset a variable, cache variable, or environment variable.
::
unset(<variable> [CACHE | PARENT_SCOPE])
Removes the specified variable causing it to become undefined. If
2015-11-17 17:22:37 +01:00
``CACHE`` is present then the variable is removed from the cache instead
2014-08-03 19:52:23 +02:00
of the current scope.
2015-11-17 17:22:37 +01:00
If ``PARENT_SCOPE`` is present then the variable is removed from the scope
above the current scope. See the same option in the :command:`set` command
for further details.
2014-08-03 19:52:23 +02:00
2015-11-17 17:22:37 +01:00
``<variable>`` can be an environment variable such as:
2014-08-03 19:52:23 +02:00
::
unset(ENV{LD_LIBRARY_PATH})
in which case the variable will be removed from the current
environment.