diff options
author | Brad King <brad.king@kitware.com> | 2013-10-22 13:08:15 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-10-22 13:08:15 (GMT) |
commit | 7809adb8145ce0d1831dc34c49f1406ad7fa68ad (patch) | |
tree | 22a1b7cd6e577749e35aa0028860dfcecbb0f243 /Help/command | |
parent | c9518497997845306b2d1127fbd7acf4e6081fe8 (diff) | |
parent | 4e184a21beda9de3703ecda94085c234f5bbd7da (diff) | |
download | CMake-7809adb8145ce0d1831dc34c49f1406ad7fa68ad.zip CMake-7809adb8145ce0d1831dc34c49f1406ad7fa68ad.tar.gz CMake-7809adb8145ce0d1831dc34c49f1406ad7fa68ad.tar.bz2 |
Merge topic 'string-CONCAT-command'
4e184a2 string: Add CONCAT sub-command
Diffstat (limited to 'Help/command')
-rw-r--r-- | Help/command/string.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Help/command/string.rst b/Help/command/string.rst index 1e18ca6..af18825 100644 --- a/Help/command/string.rst +++ b/Help/command/string.rst @@ -15,6 +15,7 @@ String operations. string(REPLACE <match_string> <replace_string> <output variable> <input> [<input>...]) + string(CONCAT <output variable> [<input>...]) string(<MD5|SHA1|SHA224|SHA256|SHA384|SHA512> <output variable> <input>) string(COMPARE EQUAL <string1> <string2> <output variable>) @@ -51,6 +52,9 @@ through argument parsing. REPLACE will replace all occurrences of match_string in the input with replace_string and store the result in the output. +CONCAT will concatenate all the input arguments together and store +the result in the named output variable. + MD5, SHA1, SHA224, SHA256, SHA384, and SHA512 will compute a cryptographic hash of the input string. |