set.rst 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. set
  2. ---
  3. Set a normal, cache, or environment variable to a given value.
  4. See the :ref:`cmake-language(7) variables <CMake Language Variables>`
  5. documentation for the scopes and interaction of normal variables
  6. and cache entries.
  7. Signatures of this command that specify a ``<value>...`` placeholder
  8. expect zero or more arguments. Multiple arguments will be joined as
  9. a :ref:`;-list <CMake Language Lists>` to form the actual variable
  10. value to be set. Zero arguments will cause normal variables to be
  11. unset. See the :command:`unset` command to unset variables explicitly.
  12. Set Normal Variable
  13. ^^^^^^^^^^^^^^^^^^^
  14. ::
  15. set(<variable> <value>... [PARENT_SCOPE])
  16. Set the given ``<variable>`` in the current function or directory scope.
  17. If the ``PARENT_SCOPE`` option is given the variable will be set in
  18. the scope above the current scope. Each new directory or function
  19. creates a new scope. This command will set the value of a variable
  20. into the parent directory or calling function (whichever is applicable
  21. to the case at hand).
  22. Set Cache Entry
  23. ^^^^^^^^^^^^^^^
  24. ::
  25. set(<variable> <value>... CACHE <type> <docstring> [FORCE])
  26. Set the given cache ``<variable>`` (cache entry). Since cache entries
  27. are meant to provide user-settable values this does not overwrite
  28. existing cache entries by default. Use the ``FORCE`` option to
  29. overwrite existing entries.
  30. The ``<type>`` must be specified as one of:
  31. ``BOOL``
  32. Boolean ``ON/OFF`` value. :manual:`cmake-gui(1)` offers a checkbox.
  33. ``FILEPATH``
  34. Path to a file on disk. :manual:`cmake-gui(1)` offers a file dialog.
  35. ``PATH``
  36. Path to a directory on disk. :manual:`cmake-gui(1)` offers a file dialog.
  37. ``STRING``
  38. A line of text. :manual:`cmake-gui(1)` offers a text field or a
  39. drop-down selection if the :prop_cache:`STRINGS` cache entry
  40. property is set.
  41. ``INTERNAL``
  42. A line of text. :manual:`cmake-gui(1)` does not show internal entries.
  43. They may be used to store variables persistently across runs.
  44. Use of this type implies ``FORCE``.
  45. The ``<docstring>`` must be specified as a line of text providing
  46. a quick summary of the option for presentation to :manual:`cmake-gui(1)`
  47. users.
  48. If the cache entry does not exist prior to the call or the ``FORCE``
  49. option is given then the cache entry will be set to the given value.
  50. Furthermore, any normal variable binding in the current scope will
  51. be removed to expose the newly cached value to any immediately
  52. following evaluation.
  53. It is possible for the cache entry to exist prior to the call but
  54. have no type set if it was created on the :manual:`cmake(1)` command
  55. line by a user through the ``-D<var>=<value>`` option without
  56. specifying a type. In this case the ``set`` command will add the
  57. type. Furthermore, if the ``<type>`` is ``PATH`` or ``FILEPATH``
  58. and the ``<value>`` provided on the command line is a relative path,
  59. then the ``set`` command will treat the path as relative to the
  60. current working directory and convert it to an absolute path.
  61. Set Environment Variable
  62. ^^^^^^^^^^^^^^^^^^^^^^^^
  63. ::
  64. set(ENV{<variable>} <value>...)
  65. Set the current process environment ``<variable>`` to the given value.