diff options
author | Craig Scott <craig.scott@crascit.com> | 2018-11-28 09:26:22 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-11-28 09:26:33 (GMT) |
commit | faf4496db372847f34046acfd0d57dda7812eafa (patch) | |
tree | ddab3a1d34cc7c61bd2cf27b6c4eed4b9b7f3a5d /Help/variable | |
parent | 049ca05da93ef7f6fced82a88069a382c6008ebf (diff) | |
parent | e15cac8ee748022d31e734f3ab9529bf6c36ac25 (diff) | |
download | CMake-faf4496db372847f34046acfd0d57dda7812eafa.zip CMake-faf4496db372847f34046acfd0d57dda7812eafa.tar.gz CMake-faf4496db372847f34046acfd0d57dda7812eafa.tar.bz2 |
Merge topic 'doc-cmake.1'
e15cac8ee7 Help: Extend the cmake(1) manual
8b3a537c29 Help: Improve cmake(1) manual organization
f9c3f7b164 Help: Emphasize tool names in their manuals
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2662
Diffstat (limited to 'Help/variable')
-rw-r--r-- | Help/variable/CMAKE_ARGC.rst | 6 | ||||
-rw-r--r-- | Help/variable/CMAKE_ARGV0.rst | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Help/variable/CMAKE_ARGC.rst b/Help/variable/CMAKE_ARGC.rst index aec9711..30db2a2 100644 --- a/Help/variable/CMAKE_ARGC.rst +++ b/Help/variable/CMAKE_ARGC.rst @@ -3,6 +3,6 @@ CMAKE_ARGC Number of command line arguments passed to CMake in script mode. -When run in :ref:`-P <CMake Options>` script mode, CMake sets this variable to -the number of command line arguments. See also :variable:`CMAKE_ARGV0`, -``1``, ``2`` ... +When run in :ref:`-P <Script Processing Mode>` script mode, CMake sets this +variable to the number of command line arguments. See also +:variable:`CMAKE_ARGV0`, ``1``, ``2`` ... diff --git a/Help/variable/CMAKE_ARGV0.rst b/Help/variable/CMAKE_ARGV0.rst index 8b1ecb7..c4d1c21 100644 --- a/Help/variable/CMAKE_ARGV0.rst +++ b/Help/variable/CMAKE_ARGV0.rst @@ -3,7 +3,7 @@ CMAKE_ARGV0 Command line argument passed to CMake in script mode. -When run in :ref:`-P <CMake Options>` script mode, CMake sets this variable to -the first command line argument. It then also sets ``CMAKE_ARGV1``, +When run in :ref:`-P <Script Processing Mode>` script mode, CMake sets this +variable to the first command line argument. It then also sets ``CMAKE_ARGV1``, ``CMAKE_ARGV2``, ... and so on, up to the number of command line arguments given. See also :variable:`CMAKE_ARGC`. |