diff options
author | Brad King <brad.king@kitware.com> | 2019-09-20 14:08:33 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-09-20 14:10:16 (GMT) |
commit | ffc7a59417619ec07728a8dea158e949155aa02b (patch) | |
tree | 7aa9d3e9621cecf58d380375c85b619bab01852a /Help/manual | |
parent | 073cfa5ae812b44e97bac2034a10c1379e8d02be (diff) | |
parent | cc3cbf91d23275cc11cf333e14f03886e54a8185 (diff) | |
download | CMake-ffc7a59417619ec07728a8dea158e949155aa02b.zip CMake-ffc7a59417619ec07728a8dea158e949155aa02b.tar.gz CMake-ffc7a59417619ec07728a8dea158e949155aa02b.tar.bz2 |
Merge topic 'cmake-e-doc-order'
cc3cbf91d2 Help: Fix indentation of create_symlink note
8e9b855a4f Help: Fix ordering of cmake -E commands
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3833
Diffstat (limited to 'Help/manual')
-rw-r--r-- | Help/manual/cmake.1.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 2576cde..754f14b 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 ----------------------------------- |