diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-18 15:21:08 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-31 21:18:44 (GMT) |
commit | 28e1d2f8fc08516e8fc3a009777437d3e086b8e6 (patch) | |
tree | 6706855db40e1726ad1d5e29bf8c763c7286156e /Help | |
parent | bf98cc252f18e761ed9a57d2f7a9304bfbb621de (diff) | |
download | CMake-28e1d2f8fc08516e8fc3a009777437d3e086b8e6.zip CMake-28e1d2f8fc08516e8fc3a009777437d3e086b8e6.tar.gz CMake-28e1d2f8fc08516e8fc3a009777437d3e086b8e6.tar.bz2 |
cmStringCommand: Add GENEX_STRIP subcommand.
Strip out any generator expressions in the input string.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/string.rst | 5 | ||||
-rw-r--r-- | Help/release/dev/string-GENEX_STRIP.rst | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/Help/command/string.rst b/Help/command/string.rst index af18825..abde6ee 100644 --- a/Help/command/string.rst +++ b/Help/command/string.rst @@ -35,6 +35,7 @@ String operations. string(FIND <string> <substring> <output variable> [REVERSE]) string(TIMESTAMP <output variable> [<format string>] [UTC]) string(MAKE_C_IDENTIFIER <input string> <output variable>) + string(GENEX_STRIP <input string> <output variable>) REGEX MATCH will match the regular expression once and store the match in the output variable. @@ -154,3 +155,7 @@ If no explicit <format string> is given it will default to: MAKE_C_IDENTIFIER will write a string which can be used as an identifier in C. + +``GENEX_STRIP`` will strip any +:manual:`generator expressions <cmake-generator-expressions(7)>` from the +``input string`` and store the result in the ``output variable``. diff --git a/Help/release/dev/string-GENEX_STRIP.rst b/Help/release/dev/string-GENEX_STRIP.rst new file mode 100644 index 0000000..b5b1074 --- /dev/null +++ b/Help/release/dev/string-GENEX_STRIP.rst @@ -0,0 +1,6 @@ +string-GENEX_STRIP +------------------ + +* The :command:`string` command learned a new ``GENEX_STRIP`` subcommand + which removes + :manual:`generator expression <cmake-generator-expressions(7)>`. |