diff options
author | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2015-12-06 19:30:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-12-07 15:51:27 (GMT) |
commit | bc35087da3eb9039dad8fb5d27c1fab60b43f776 (patch) | |
tree | 3dd571955e4de96714ea37bde105f64155220ae8 /Help/manual/cmake.1.rst | |
parent | 98be140fc0dc0bab8955c4fea9274ea52ac8cd9c (diff) | |
download | CMake-bc35087da3eb9039dad8fb5d27c1fab60b43f776.zip CMake-bc35087da3eb9039dad8fb5d27c1fab60b43f776.tar.gz CMake-bc35087da3eb9039dad8fb5d27c1fab60b43f776.tar.bz2 |
cmake: Teach -E copy_directory to support multiple input directories
Diffstat (limited to 'Help/manual/cmake.1.rst')
-rw-r--r-- | Help/manual/cmake.1.rst | 5 |
1 files changed, 3 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 |