diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-11-21 06:50:29 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-11-21 06:50:29 (GMT) |
commit | 71a2c9d31bd906ef85ef0283a228b64c70707ee6 (patch) | |
tree | 1e232a5495df1e198cbb347f7d1e8eb245f97105 /Help/prop_test | |
parent | 354cd1502923fc7adeab37cc898659b1b9671b2c (diff) | |
download | CMake-71a2c9d31bd906ef85ef0283a228b64c70707ee6.zip CMake-71a2c9d31bd906ef85ef0283a228b64c70707ee6.tar.gz CMake-71a2c9d31bd906ef85ef0283a228b64c70707ee6.tar.bz2 |
Help: ENVIRONMENT_MODIFICATION path_list_... separator is based on host
Fixes: #22937
Diffstat (limited to 'Help/prop_test')
-rw-r--r-- | Help/prop_test/ENVIRONMENT_MODIFICATION.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Help/prop_test/ENVIRONMENT_MODIFICATION.rst b/Help/prop_test/ENVIRONMENT_MODIFICATION.rst index 0b3cd83..1e17329 100644 --- a/Help/prop_test/ENVIRONMENT_MODIFICATION.rst +++ b/Help/prop_test/ENVIRONMENT_MODIFICATION.rst @@ -21,9 +21,11 @@ order specified in the property's value. The ``OP`` may be one of: - ``string_append``: Appends ``VALUE`` to the current value of ``MYVAR``. - ``string_prepend``: Prepends ``VALUE`` to the current value of ``MYVAR``. - ``path_list_append``: Appends ``VALUE`` to the current value of ``MYVAR`` - using the platform-specific list separator. + using the host platform's path list separator (``;`` on Windows and ``:`` + elsewhere). - ``path_list_prepend``: Prepends ``VALUE`` to the current value of - ``MYVAR`` using the platform-specific list separator. + ``MYVAR`` using the host platform's path list separator (``;`` on Windows + and ``:`` elsewhere). - ``cmake_list_append``: Appends ``VALUE`` to the current value of ``MYVAR`` using ``;`` as the separator. - ``cmake_list_prepend``: Prepends ``VALUE`` to the current value of |