diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-07-03 09:00:14 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-07-04 07:37:29 (GMT) |
commit | 24b76eaa93447d3521b55c5233036ce3ca752d6b (patch) | |
tree | 0ba72d325cb284f77046e58c733a2eaed5b59160 /Help/command/file.rst | |
parent | 308e5b30c900cb4aa1009ee8e25908a41060d992 (diff) | |
download | CMake-24b76eaa93447d3521b55c5233036ce3ca752d6b.zip CMake-24b76eaa93447d3521b55c5233036ce3ca752d6b.tar.gz CMake-24b76eaa93447d3521b55c5233036ce3ca752d6b.tar.bz2 |
Help: Improve readability and accuracy of runtime deps-related content
Duplicated textual patterns are factored out to make the text
more readable. The POST_INCLUDE_FILES and POST_EXCLUDE_FILES
were also previously missing from the main syntax block for
install(RUNTIME_DEPENDENCY_SET).
Diffstat (limited to 'Help/command/file.rst')
-rw-r--r-- | Help/command/file.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Help/command/file.rst b/Help/command/file.rst index 8ce27ff..943bf7c 100644 --- a/Help/command/file.rst +++ b/Help/command/file.rst @@ -189,8 +189,10 @@ the ``<format>`` and ``UTC`` options. Recursively get the list of libraries depended on by the given files. Please note that this sub-command is not intended to be used in project mode. -Instead, use it in an :command:`install(CODE)` or :command:`install(SCRIPT)` -block. For example: +It is intended for use at install time, either from code generated by the +:command:`install(RUNTIME_DEPENDENCY_SET)` command, or from code provided by +the project via :command:`install(CODE)` or :command:`install(SCRIPT)`. +For example: .. code-block:: cmake |