summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2019-09-18 19:21:10 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2019-09-18 19:21:10 (GMT)
commit8e9b855a4f66da20067937735c87a2b104363872 (patch)
treeb86d302e3b7298450d0ac736e62b2f30a8e33fdf
parent1423507a71199fd76b457ad9b215a6caca70ee58 (diff)
downloadCMake-8e9b855a4f66da20067937735c87a2b104363872.zip
CMake-8e9b855a4f66da20067937735c87a2b104363872.tar.gz
CMake-8e9b855a4f66da20067937735c87a2b104363872.tar.bz2
Help: Fix ordering of cmake -E commands
Several of the commands were not in alphabetical order. Fix the ordering.
-rw-r--r--Help/manual/cmake.1.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst
index 2576cde..28ebb70 100644
--- a/Help/manual/cmake.1.rst
+++ b/Help/manual/cmake.1.rst
@@ -473,6 +473,12 @@ Available commands are:
directory and it must exist.
``copy_if_different`` does follow symlinks.
+``create_symlink <old> <new>``
+ Create a symbolic link ``<new>`` naming ``<old>``.
+
+.. note::
+ Path to where ``<new>`` symbolic link will be created has to exist beforehand.
+
``echo [<string>...]``
Displays arguments as text.
@@ -485,6 +491,9 @@ Available commands are:
``environment``
Display the current environment variables.
+``false``
+ Do nothing, with an exit code of 1.
+
``make_directory <dir>...``
Create ``<dir>`` directories. If necessary, create parent
directories too. If a directory already exists it will be
@@ -602,18 +611,9 @@ Available commands are:
Touch a file if it exists but do not create it. If a file does
not exist it will be silently ignored.
-``create_symlink <old> <new>``
- Create a symbolic link ``<new>`` naming ``<old>``.
-
-.. note::
- Path to where ``<new>`` symbolic link will be created has to exist beforehand.
-
``true``
Do nothing, with an exit code of 0.
-``false``
- Do nothing, with an exit code of 1.
-
Windows-specific Command-Line Tools
-----------------------------------