diff options
author | Robert Maynard <rmaynard@nvidia.com> | 2022-02-23 18:07:34 (GMT) |
---|---|---|
committer | Robert Maynard <rmaynard@nvidia.com> | 2022-02-23 18:07:34 (GMT) |
commit | 79f64cc7732d071b6403d2771812c5a523f6877f (patch) | |
tree | db1fb747731e206ac087d06fe7cbd20a9f7509e7 /Help/prop_test | |
parent | 885a17b2db1ce87f8b3d49ec8b6536447b6c18fb (diff) | |
download | CMake-79f64cc7732d071b6403d2771812c5a523f6877f.zip CMake-79f64cc7732d071b6403d2771812c5a523f6877f.tar.gz CMake-79f64cc7732d071b6403d2771812c5a523f6877f.tar.bz2 |
Help: ENVIRONMENT_MODIFICATION clarify only supports singular values
Lists need to be externally iterated
Diffstat (limited to 'Help/prop_test')
-rw-r--r-- | Help/prop_test/ENVIRONMENT_MODIFICATION.rst | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/Help/prop_test/ENVIRONMENT_MODIFICATION.rst b/Help/prop_test/ENVIRONMENT_MODIFICATION.rst index 1e17329..99ff512 100644 --- a/Help/prop_test/ENVIRONMENT_MODIFICATION.rst +++ b/Help/prop_test/ENVIRONMENT_MODIFICATION.rst @@ -18,17 +18,19 @@ order specified in the property's value. The ``OP`` may be one of: to its state from the rest of the CTest execution. - ``set``: Replaces the current value of ``MYVAR`` with ``VALUE``. - ``unset``: Unsets the current value of ``MYVAR``. - - ``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 host platform's path list separator (``;`` on Windows and ``:`` - elsewhere). - - ``path_list_prepend``: Prepends ``VALUE`` to the current value of + - ``string_append``: Appends singular ``VALUE`` to the current value of + ``MYVAR``. + - ``string_prepend``: Prepends singular ``VALUE`` to the current value of + ``MYVAR``. + - ``path_list_append``: Appends singular ``VALUE`` to the current value of ``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 + - ``path_list_prepend``: Prepends singular ``VALUE`` to the current value of + ``MYVAR`` using the host platform's path list separator (``;`` on Windows + and ``:`` elsewhere). + - ``cmake_list_append``: Appends singular ``VALUE`` to the current value of + ``MYVAR`` using ``;`` as the separator. + - ``cmake_list_prepend``: Prepends singular ``VALUE`` to the current value of ``MYVAR`` using ``;`` as the separator. Unrecognized ``OP`` values will result in the test failing before it is |