File: unset.rst

package info (click to toggle)
cmake 4.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 152,348 kB
  • sloc: ansic: 403,894; cpp: 303,807; sh: 4,097; python: 3,582; yacc: 3,106; lex: 1,279; f90: 538; asm: 471; lisp: 375; cs: 270; java: 266; fortran: 239; objc: 215; perl: 213; xml: 198; makefile: 108; javascript: 83; pascal: 63; tcl: 55; php: 25; ruby: 22
file content (58 lines) | stat: -rw-r--r-- 1,378 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
unset
-----

Unset a variable, cache variable, or environment variable.

Unset Normal Variable
^^^^^^^^^^^^^^^^^^^^^

.. signature::
  unset(<variable> [PARENT_SCOPE])
  :target: normal

  Removes a normal variable from the current scope, causing it
  to become undefined.

  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.

.. include:: include/UNSET_NOTE.rst

Unset Cache Entry
^^^^^^^^^^^^^^^^^

.. signature::
  unset(CACHE{<variable>})
  :target: CACHE

  .. versionadded:: 4.2

  Removes ``<variable>`` from the cache, causing it to become undefined.

.. signature::
  unset(<variable> CACHE)
  :target: CACHE_legacy

  This signature is supported for compatibility purpose. Use preferably the
  other one.

Unset Environment Variable
^^^^^^^^^^^^^^^^^^^^^^^^^^

.. signature::
  unset(ENV{<variable>})
  :target: ENV

  Removes ``<variable>`` from the currently available
  :manual:`Environment Variables <cmake-env-variables(7)>`.
  Subsequent calls of ``$ENV{<variable>}`` will return the empty string.

  This command affects only the current CMake process, not the process
  from which CMake was called, nor the system environment at large,
  nor the environment of subsequent build or test processes.

See Also
^^^^^^^^

* :command:`set`