https://github.com/Kitware/CMake
Raw File
Tip revision: f3e9a6ff62f6f58cd661dd447c22a01c50f6f4ad authored by Brad King on 31 May 2019, 13:18:58 UTC
CMake 3.14.5
Tip revision: f3e9a6f
CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS.rst
CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS
---------------------------------

This variable contains a list of env vars as a list of tokens with the
syntax ``var=value``.

Example:

.. code-block:: cmake

  set(CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS
     "FOO=FOO1\;FOO2\;FOON"
     "BAR=BAR1\;BAR2\;BARN"
     "BAZ=BAZ1\;BAZ2\;BAZN"
     "FOOBAR=FOOBAR1\;FOOBAR2\;FOOBARN"
     "VALID="
     )

In case of malformed variables CMake will fail:

.. code-block:: cmake

  set(CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS
      "THIS_IS_NOT_VALID"
      )
back to top