diff options
author | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-12 10:47:49 (GMT) |
---|---|---|
committer | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-12 10:59:16 (GMT) |
commit | 071f5e15440d676c36c6ed8a92618b8ca4bb36fe (patch) | |
tree | e3c2f80524187bec0de61e53f7291fb7b3f362e3 /Source | |
parent | b90cab5bff63902818cc3cc6268a7f96157c1381 (diff) | |
download | CMake-071f5e15440d676c36c6ed8a92618b8ca4bb36fe.zip CMake-071f5e15440d676c36c6ed8a92618b8ca4bb36fe.tar.gz CMake-071f5e15440d676c36c6ed8a92618b8ca4bb36fe.tar.bz2 |
cmake: Reformat '--parallel' and '--verbose' options in help
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmakemain.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 1c56bcd..a8431c4 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -54,10 +54,10 @@ static const char* cmDocumentationUsageNote[][2] = { # define CMAKE_BUILD_OPTIONS \ " <dir> = Project binary directory to be built.\n" \ - " -j [<jobs>] --parallel [<jobs>] = Build in parallel using\n" \ - " the given number of jobs. If <jobs> is omitted\n" \ - " the native build tool's default number is used.\n" \ - " The CMAKE_BUILD_PARALLEL_LEVEL environment " \ + " --parallel [<jobs>], -j [<jobs>]\n" \ + " = Build in parallel using the given number of jobs. \n" \ + " If <jobs> is omitted the native build tool's \n" \ + " default number is used.\n" \ "variable\n" \ " specifies a default parallel level when this " \ "option\n" \ @@ -67,7 +67,7 @@ static const char* cmDocumentationUsageNote[][2] = { " --config <cfg> = For multi-configuration tools, choose <cfg>.\n" \ " --clean-first = Build target 'clean' first, then build.\n" \ " (To clean only, use --target 'clean'.)\n" \ - " -v --verbose = Enable verbose output - if supported - including\n" \ + " --verbose, -v = Enable verbose output - if supported - including\n" \ " the build commands to be executed. \n" \ " -- = Pass remaining options to the native tool.\n" |