summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBartosz Kosiorek <gang65@poczta.onet.pl>2015-12-06 19:30:44 (GMT)
committerBrad King <brad.king@kitware.com>2015-12-07 15:51:27 (GMT)
commitbc35087da3eb9039dad8fb5d27c1fab60b43f776 (patch)
tree3dd571955e4de96714ea37bde105f64155220ae8 /Help
parent98be140fc0dc0bab8955c4fea9274ea52ac8cd9c (diff)
downloadCMake-bc35087da3eb9039dad8fb5d27c1fab60b43f776.zip
CMake-bc35087da3eb9039dad8fb5d27c1fab60b43f776.tar.gz
CMake-bc35087da3eb9039dad8fb5d27c1fab60b43f776.tar.bz2
cmake: Teach -E copy_directory to support multiple input directories
Diffstat (limited to 'Help')
-rw-r--r--Help/manual/cmake.1.rst5
-rw-r--r--Help/release/dev/cmake-E-copy-multiple-inputs.rst3
2 files changed, 6 insertions, 2 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst
index d5e8505..4cbe976 100644
--- a/Help/manual/cmake.1.rst
+++ b/Help/manual/cmake.1.rst
@@ -174,8 +174,9 @@ Available commands are:
If multiple files are specified, the ``<destination>`` must be
directory and it must exist.
-``copy_directory <source> <destination>``
- Copy directory 'source' content to directory 'destination'.
+``copy_directory <dir>... <destination>``
+ Copy directories to ``<destination>`` directory.
+ If ``<destination>`` directory does not exist it will be created.
``copy_if_different <file>... <destination>``
Copy files to ``<destination>`` (either file or directory) if
diff --git a/Help/release/dev/cmake-E-copy-multiple-inputs.rst b/Help/release/dev/cmake-E-copy-multiple-inputs.rst
index 798af53..eeb1fab 100644
--- a/Help/release/dev/cmake-E-copy-multiple-inputs.rst
+++ b/Help/release/dev/cmake-E-copy-multiple-inputs.rst
@@ -3,3 +3,6 @@ cmake-E-copy-multiple-inputs
* The :manual:`cmake(1)` ``-E copy`` and ``-E copy_if_different`` command-line
tools learned to support copying multiple input files to a directory.
+
+* The :manual:`cmake(1)` ``-E copy_directory`` command-line
+ tool learned to support copying multiple input directories to a directory.