blob: 02c8663b4993168548de189b83c6f37c25319b2c (
plain)
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
|
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"
)
|