diff options
author | Sylvain Joubert <joubert.sy@gmail.com> | 2017-08-11 13:26:33 +0200 |
---|---|---|
committer | Sylvain Joubert <joubert.sy@gmail.com> | 2017-08-11 13:26:33 +0200 |
commit | d8ecc2545798c77ec5bf22bb420a3343d4843ef6 (patch) | |
tree | de0ac663a00cb494ec78452811ca1f0aac3f551d /Help | |
parent | f8a61c578badb0015423580b38341bc00a3c7fd4 (diff) | |
download | cmake-d8ecc2545798c77ec5bf22bb420a3343d4843ef6.tar.gz |
Add PREPEND sub-command to string command
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/string.rst | 9 | ||||
-rw-r--r-- | Help/release/dev/string_prepend.rst | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Help/command/string.rst b/Help/command/string.rst index 4f0c45c298..ba4a412c2e 100644 --- a/Help/command/string.rst +++ b/Help/command/string.rst @@ -132,6 +132,15 @@ APPEND Append all the input arguments to the string. +PREPEND +""""""" + +:: + + string(PREPEND <string variable> [<input>...]) + +Prepend all the input arguments to the string. + CONCAT """""" diff --git a/Help/release/dev/string_prepend.rst b/Help/release/dev/string_prepend.rst new file mode 100644 index 0000000000..f896e91b86 --- /dev/null +++ b/Help/release/dev/string_prepend.rst @@ -0,0 +1,4 @@ +string_prepend +-------------- + +* The :command:`string` command learned a new ``PREPEND`` subcommand. |