summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2023-02-09 13:45:22 (GMT)
committerKitware Robot <kwrobot@kitware.com>2023-02-09 13:45:39 (GMT)
commit07c51e61d49b0ee1de74d63dbf99d3e69f92e170 (patch)
tree595509ec4d07cf19a8676d9124c5441371ebc01d /Help
parent034f658c345e899622ddd9e9d7e3fdcdbc91344d (diff)
parente0335f5830f78e27c088e0162dd00a973301d043 (diff)
downloadCMake-07c51e61d49b0ee1de74d63dbf99d3e69f92e170.zip
CMake-07c51e61d49b0ee1de74d63dbf99d3e69f92e170.tar.gz
CMake-07c51e61d49b0ee1de74d63dbf99d3e69f92e170.tar.bz2
Merge topic 'target-runtime-dlls-doc'
e0335f5830 Help: Update $<TARGET_RUNTIME_DLLS> docs to use cmake -E copy -t Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8185
Diffstat (limited to 'Help')
-rw-r--r--Help/manual/cmake-generator-expressions.7.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst
index 8bb9dde..c3e87d7 100644
--- a/Help/manual/cmake-generator-expressions.7.rst
+++ b/Help/manual/cmake-generator-expressions.7.rst
@@ -1673,8 +1673,8 @@ In the following, the phrase "the ``tgt`` filename" means the name of the
**On non-DLL platforms, this expression always evaluates to an empty string**.
This generator expression can be used to copy all of the DLLs that a target
- depends on into its output directory in a ``POST_BUILD`` custom command. For
- example:
+ depends on into its output directory in a ``POST_BUILD`` custom command using
+ the :option:`cmake -E copy -t <cmake-E copy>` command. For example:
.. code-block:: cmake
@@ -1683,7 +1683,7 @@ In the following, the phrase "the ``tgt`` filename" means the name of the
add_executable(exe main.c)
target_link_libraries(exe PRIVATE foo::foo foo::bar)
add_custom_command(TARGET exe POST_BUILD
- COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_RUNTIME_DLLS:exe> $<TARGET_FILE_DIR:exe>
+ COMMAND ${CMAKE_COMMAND} -E copy -t $<TARGET_FILE_DIR:exe> $<TARGET_RUNTIME_DLLS:exe>
COMMAND_EXPAND_LISTS
)