diff options
author | Brad King <brad.king@kitware.com> | 2021-11-22 16:18:43 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-11-22 16:19:02 (GMT) |
commit | deb9b076368512c1c7c391706f6f9e21cfb473f3 (patch) | |
tree | d45f8e3a57a52401ecf3caf8b3a441123f1d3786 /Help | |
parent | 8431aea9ba06d35c592042df8d868ca5446afcb2 (diff) | |
parent | 71a2c9d31bd906ef85ef0283a228b64c70707ee6 (diff) | |
download | CMake-deb9b076368512c1c7c391706f6f9e21cfb473f3.zip CMake-deb9b076368512c1c7c391706f6f9e21cfb473f3.tar.gz CMake-deb9b076368512c1c7c391706f6f9e21cfb473f3.tar.bz2 |
Merge topic 'env-mod-path-list-separator' into release-3.22
71a2c9d31b Help: ENVIRONMENT_MODIFICATION path_list_... separator is based on host
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Ben Boeckel <ben.boeckel@kitware.com>
Merge-request: !6753
Diffstat (limited to 'Help')
-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 |