diff options
author | Fred Baksik <frodak17@gmail.com> | 2019-04-22 15:01:24 (GMT) |
---|---|---|
committer | Fred Baksik <frodak17@gmail.com> | 2019-05-01 13:15:51 (GMT) |
commit | 6ad699358b6b421da6c49cf540b30eb8b0a3a996 (patch) | |
tree | 58ba9cddd24b581eca31fc130a5f7606c77abd78 /Help | |
parent | 955f7f41c08b90553fb4bcf364c12c072802d925 (diff) | |
download | CMake-6ad699358b6b421da6c49cf540b30eb8b0a3a996.zip CMake-6ad699358b6b421da6c49cf540b30eb8b0a3a996.tar.gz CMake-6ad699358b6b421da6c49cf540b30eb8b0a3a996.tar.bz2 |
cmake: --build -j <jobs> should not accept 0.
Fixes #19059
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake.1.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 5b88694..ba47885 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -280,6 +280,9 @@ following options: The :envvar:`CMAKE_BUILD_PARALLEL_LEVEL` environment variable, if set, specifies a default parallel level when this option is not given. + Some native build tools always build in parallel. The use of ``<jobs>`` + value of ``1`` can be used to limit to a single job. + ``--target <tgt>..., -t <tgt>...`` Build ``<tgt>`` instead of default targets. May be specified multiple times. |