diff options
author | Matthew Woehlke <matthew.woehlke@kitware.com> | 2023-03-13 16:09:13 (GMT) |
---|---|---|
committer | Matthew Woehlke <matthew.woehlke@kitware.com> | 2023-03-15 14:53:25 (GMT) |
commit | c8f65d2b67604643e1dc07ae05b09ad861e49f23 (patch) | |
tree | 89c3b0dd2d0ac9ef20c7054c4ebf56804e7257c2 /Help | |
parent | 68fb1572a8352f5229009285202afc3df692642f (diff) | |
download | CMake-c8f65d2b67604643e1dc07ae05b09ad861e49f23.zip CMake-c8f65d2b67604643e1dc07ae05b09ad861e49f23.tar.gz CMake-c8f65d2b67604643e1dc07ae05b09ad861e49f23.tar.bz2 |
Help: Improve file command signatures
Fix a couple of file command signatures that were not using angle
brackets to mark arguments.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/file.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Help/command/file.rst b/Help/command/file.rst index 5c41f0d..25b762c 100644 --- a/Help/command/file.rst +++ b/Help/command/file.rst @@ -504,9 +504,9 @@ Writing .. code-block:: cmake - file(GENERATE OUTPUT output-file - <INPUT input-file|CONTENT content> - [CONDITION expression] [TARGET target] + file(GENERATE OUTPUT <output-file> + <INPUT <input-file>|CONTENT <content>> + [CONDITION <expression>] [TARGET <target>] [NO_SOURCE_PERMISSIONS | USE_SOURCE_PERMISSIONS | FILE_PERMISSIONS <permissions>...] [NEWLINE_STYLE [UNIX|DOS|WIN32|LF|CRLF] ]) @@ -588,8 +588,8 @@ Writing of a project's ``CMakeLists.txt`` files. .. signature:: - file(CONFIGURE OUTPUT output-file - CONTENT content + file(CONFIGURE OUTPUT <output-file> + CONTENT <content> [ESCAPE_QUOTES] [@ONLY] [NEWLINE_STYLE [UNIX|DOS|WIN32|LF|CRLF] ]) :target: CONFIGURE |