Browse Source

Help: Fix ordering of cmake -E commands

Several of the commands were not in alphabetical order. Fix the
ordering.
pull/332/head
Kyle Edwards 6 years ago
parent
commit
8e9b855a4f
  1. 18
      Help/manual/cmake.1.rst

18
Help/manual/cmake.1.rst

@ -473,6 +473,12 @@ Available commands are:
directory and it must exist. directory and it must exist.
``copy_if_different`` does follow symlinks. ``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>...]`` ``echo [<string>...]``
Displays arguments as text. Displays arguments as text.
@ -485,6 +491,9 @@ Available commands are:
``environment`` ``environment``
Display the current environment variables. Display the current environment variables.
``false``
Do nothing, with an exit code of 1.
``make_directory <dir>...`` ``make_directory <dir>...``
Create ``<dir>`` directories. If necessary, create parent Create ``<dir>`` directories. If necessary, create parent
directories too. If a directory already exists it will be 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 Touch a file if it exists but do not create it. If a file does
not exist it will be silently ignored. 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`` ``true``
Do nothing, with an exit code of 0. Do nothing, with an exit code of 0.
``false``
Do nothing, with an exit code of 1.
Windows-specific Command-Line Tools Windows-specific Command-Line Tools
----------------------------------- -----------------------------------

Loading…
Cancel
Save