diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2014-08-04 16:47:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-08-06 13:23:47 (GMT) |
commit | 5b30ec28f9610b0e6d12b017d83fc362b0ef9ecf (patch) | |
tree | f65b3c668a8794db8419861839d705400a88e116 /Help/command | |
parent | ffa373e71114727dd70f1a051414de573debb767 (diff) | |
download | CMake-5b30ec28f9610b0e6d12b017d83fc362b0ef9ecf.zip CMake-5b30ec28f9610b0e6d12b017d83fc362b0ef9ecf.tar.gz CMake-5b30ec28f9610b0e6d12b017d83fc362b0ef9ecf.tar.bz2 |
file: Add ENCODING option to file(STRINGS) command (#10519)
Support extraction of UTF-8 strings.
Diffstat (limited to 'Help/command')
-rw-r--r-- | Help/command/file.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Help/command/file.rst b/Help/command/file.rst index 58e3a26..dbc4149 100644 --- a/Help/command/file.rst +++ b/Help/command/file.rst @@ -64,6 +64,9 @@ Parse a list of ASCII strings from ``<filename>`` and store it in ``REGEX <regex>`` Consider only strings that match the given regular expression. +``ENCODING <encoding-type>`` + Consider strings of a given encoding. "UTF-8" is currently supported. + For example, the code .. code-block:: cmake |