diff options
author | friendlyanon <friendlyanon_@hotmail.com> | 2021-05-01 14:10:43 (GMT) |
---|---|---|
committer | friendlyanon <friendlyanon_@hotmail.com> | 2021-05-04 18:30:18 (GMT) |
commit | d2b856bc9219d7176ae8fd394843151e27021a8e (patch) | |
tree | caf4aa07a4bde9260fbebf5ec2cbca6f456e3405 /Help | |
parent | fc2ac460435df289149e4faaf494e6b287071a8c (diff) | |
download | CMake-d2b856bc9219d7176ae8fd394843151e27021a8e.zip CMake-d2b856bc9219d7176ae8fd394843151e27021a8e.tar.gz CMake-d2b856bc9219d7176ae8fd394843151e27021a8e.tar.bz2 |
ctest_build: Add the PARALLEL_LEVEL argument
Fixes: #19712
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/ctest_build.rst | 8 | ||||
-rw-r--r-- | Help/release/dev/generate-cmake-build-command-parallel.rst | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Help/command/ctest_build.rst b/Help/command/ctest_build.rst index 4d6dc5a..e05df1a 100644 --- a/Help/command/ctest_build.rst +++ b/Help/command/ctest_build.rst @@ -7,6 +7,7 @@ Perform the :ref:`CTest Build Step` as a :ref:`Dashboard Client`. ctest_build([BUILD <build-dir>] [APPEND] [CONFIGURATION <config>] + [PARALLEL_LEVEL <parallel>] [FLAGS <flags>] [PROJECT_NAME <project-name>] [TARGET <target-name>] @@ -42,6 +43,13 @@ The options are: Otherwise the ``-C <cfg>`` option given to the :manual:`ctest(1)` command will be used, if any. +``PARALLEL_LEVEL <parallel>`` + .. versionadded:: 3.21 + + Specify the parallel level of the underlying build system. If not + specified, the :envvar:`CMAKE_BUILD_PARALLEL_LEVEL` environment + variable will be checked. + ``FLAGS <flags>`` Pass additional arguments to the underlying build command. If not specified the ``CTEST_BUILD_FLAGS`` variable will be checked. diff --git a/Help/release/dev/generate-cmake-build-command-parallel.rst b/Help/release/dev/generate-cmake-build-command-parallel.rst index 8d3b7d7..1b8dd40 100644 --- a/Help/release/dev/generate-cmake-build-command-parallel.rst +++ b/Help/release/dev/generate-cmake-build-command-parallel.rst @@ -2,3 +2,5 @@ generate-cmake-build-command-parallel ------------------------------------- * The :command:`build_command` command gained a ``PARALLEL_LEVEL`` option. + +* The :command:`ctest_build` command gained a ``PARALLEL_LEVEL`` option. |