diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-08-09 19:33:17 (GMT) |
---|---|---|
committer | Alex Turbov <i.zaufi@gmail.com> | 2022-08-14 05:58:41 (GMT) |
commit | 28ecfd1690fe949274a7be8cd1869b68bef7f64d (patch) | |
tree | b4b7dfefb783338a5753c989c14d73a52465cf3f /Help/manual | |
parent | 57f23fa8fcd508ac26a2e87deae0704c11e77933 (diff) | |
download | CMake-28ecfd1690fe949274a7be8cd1869b68bef7f64d.zip CMake-28ecfd1690fe949274a7be8cd1869b68bef7f64d.tar.gz CMake-28ecfd1690fe949274a7be8cd1869b68bef7f64d.tar.bz2 |
Help: Short options first, then long, then Windows style
Diffstat (limited to 'Help/manual')
-rw-r--r-- | Help/manual/OPTIONS_HELP.txt | 4 | ||||
-rw-r--r-- | Help/manual/cmake.1.rst | 2 | ||||
-rw-r--r-- | Help/manual/cpack.1.rst | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Help/manual/OPTIONS_HELP.txt b/Help/manual/OPTIONS_HELP.txt index 00e5714..0e51a7f 100644 --- a/Help/manual/OPTIONS_HELP.txt +++ b/Help/manual/OPTIONS_HELP.txt @@ -1,12 +1,12 @@ .. |file| replace:: The help is printed to a named ``<file>`` if given. -.. option:: --help, -help, -usage, -h, -H, /? +.. option:: -h, -H, --help, -help, -usage, /? Print usage information and exit. Usage describes the basic command line interface and its options. -.. option:: --version, -version, /V [<file>] +.. option:: -version [<file>], --version [<file>], /V [<file>] Show program name/version banner and exit. diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index c5d3016..26f9d7c 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -545,7 +545,7 @@ following options: Some native build tools always build in parallel. The use of ``<jobs>`` value of ``1`` can be used to limit to a single job. -.. option:: --target <tgt>..., -t <tgt>... +.. option:: -t <tgt>..., --target <tgt>... Build ``<tgt>`` instead of the default target. Multiple targets may be given, separated by spaces. diff --git a/Help/manual/cpack.1.rst b/Help/manual/cpack.1.rst index 4861e95..a95df8b 100644 --- a/Help/manual/cpack.1.rst +++ b/Help/manual/cpack.1.rst @@ -73,7 +73,7 @@ Options details. By default, ``CPackConfig.cmake`` in the current directory will be used. -.. option:: --verbose, -V +.. option:: -V, --verbose Run ``cpack`` with verbose output. This can be used to show more details from the package generation tools and is suitable for project developers. |