summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBartosz Kosiorek <gang65@poczta.onet.pl>2015-12-09 14:59:43 (GMT)
committerBrad King <brad.king@kitware.com>2015-12-10 14:07:38 (GMT)
commit7984ac5e58722295e71f6c2418e2a54d6f1a0cc1 (patch)
treed94e938704d3314f1e24018235a524a26daeb5f9 /Help
parent4ce6fbc76b0ebaeef258695c2b876061b5b61073 (diff)
downloadCMake-7984ac5e58722295e71f6c2418e2a54d6f1a0cc1.zip
CMake-7984ac5e58722295e71f6c2418e2a54d6f1a0cc1.tar.gz
CMake-7984ac5e58722295e71f6c2418e2a54d6f1a0cc1.tar.bz2
cmake: Teach -E make_directory to support multiple input directories
Diffstat (limited to 'Help')
-rw-r--r--Help/manual/cmake.1.rst10
-rw-r--r--Help/release/dev/cmake-E-multiple-inputs.rst3
2 files changed, 9 insertions, 4 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst
index 4cbe976..91af3e3 100644
--- a/Help/manual/cmake.1.rst
+++ b/Help/manual/cmake.1.rst
@@ -167,7 +167,8 @@ Available commands are:
Change the current working directory and run a command.
``compare_files <file1> <file2>``
- Check if file1 is same as file2.
+ Check if ``<file1>`` is same as ``<file2>``. If files are the same,
+ then returns 0, if not itreturns 1.
``copy <file>... <destination>``
Copy files to ``<destination>`` (either file or directory).
@@ -194,10 +195,11 @@ Available commands are:
Run command in a modified environment.
``environment``
- Display the current environment.
+ Display the current environment variables.
-``make_directory <dir>``
- Create a directory.
+``make_directory <dir>...``
+ Create ``<dir>`` directories. If necessary, create parent
+ directories too.
``md5sum <file>...``
Compute md5sum of files.
diff --git a/Help/release/dev/cmake-E-multiple-inputs.rst b/Help/release/dev/cmake-E-multiple-inputs.rst
index aa52a98..480261d 100644
--- a/Help/release/dev/cmake-E-multiple-inputs.rst
+++ b/Help/release/dev/cmake-E-multiple-inputs.rst
@@ -6,3 +6,6 @@ cmake-E-multiple-inputs
* The :manual:`cmake(1)` ``-E copy_directory`` command-line
tool learned to support copying multiple input directories to a directory.
+
+* The :manual:`cmake(1)` ``-E make_directory`` command-line
+ tool learned to support copying multiple input directories to a directory.