diff options
author | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2015-12-09 14:59:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-12-10 14:07:38 (GMT) |
commit | 7984ac5e58722295e71f6c2418e2a54d6f1a0cc1 (patch) | |
tree | d94e938704d3314f1e24018235a524a26daeb5f9 /Help/manual/cmake.1.rst | |
parent | 4ce6fbc76b0ebaeef258695c2b876061b5b61073 (diff) | |
download | CMake-7984ac5e58722295e71f6c2418e2a54d6f1a0cc1.zip CMake-7984ac5e58722295e71f6c2418e2a54d6f1a0cc1.tar.gz CMake-7984ac5e58722295e71f6c2418e2a54d6f1a0cc1.tar.bz2 |
cmake: Teach -E make_directory to support multiple input directories
Diffstat (limited to 'Help/manual/cmake.1.rst')
-rw-r--r-- | Help/manual/cmake.1.rst | 10 |
1 files changed, 6 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. |