Merge topic 'doc-cmake-E-updates'
960afaad
Help: Improve 'cmake -E md5sum' documentation25ee2c86
Help: Add missing space in cmake(1) manual
This commit is contained in:
commit
96c8a4769f
|
@ -169,7 +169,7 @@ Available commands are:
|
||||||
|
|
||||||
``compare_files <file1> <file2>``
|
``compare_files <file1> <file2>``
|
||||||
Check if ``<file1>`` is same as ``<file2>``. If files are the same,
|
Check if ``<file1>`` is same as ``<file2>``. If files are the same,
|
||||||
then returns 0, if not itreturns 1.
|
then returns 0, if not it returns 1.
|
||||||
|
|
||||||
``copy <file>... <destination>``
|
``copy <file>... <destination>``
|
||||||
Copy files to ``<destination>`` (either file or directory).
|
Copy files to ``<destination>`` (either file or directory).
|
||||||
|
@ -204,7 +204,10 @@ Available commands are:
|
||||||
silently ignored.
|
silently ignored.
|
||||||
|
|
||||||
``md5sum <file>...``
|
``md5sum <file>...``
|
||||||
Compute md5sum of files.
|
Create MD5 checksum of files in ``md5sum`` compatible format::
|
||||||
|
|
||||||
|
351abe79cd3800b38cdfb25d45015a15 file1.txt
|
||||||
|
052f86c15bbde68af55c7f7b340ab639 file2.txt
|
||||||
|
|
||||||
``remove [-f] <file>...``
|
``remove [-f] <file>...``
|
||||||
Remove the file(s), use ``-f`` to force it. If a file does
|
Remove the file(s), use ``-f`` to force it. If a file does
|
||||||
|
|
|
@ -70,7 +70,7 @@ void CMakeCommandUsage(const char* program)
|
||||||
<< " - run command in a modified environment\n"
|
<< " - run command in a modified environment\n"
|
||||||
<< " environment - display the current environment\n"
|
<< " environment - display the current environment\n"
|
||||||
<< " make_directory <dir>... - create parent and <dir> directories\n"
|
<< " make_directory <dir>... - create parent and <dir> directories\n"
|
||||||
<< " md5sum <file>... - compute md5sum of files\n"
|
<< " md5sum <file>... - create MD5 checksum of files\n"
|
||||||
<< " remove [-f] <file>... - remove the file(s), use -f to force "
|
<< " remove [-f] <file>... - remove the file(s), use -f to force "
|
||||||
"it\n"
|
"it\n"
|
||||||
<< " remove_directory dir - remove a directory and its contents\n"
|
<< " remove_directory dir - remove a directory and its contents\n"
|
||||||
|
|
Loading…
Reference in New Issue