diff options
author | Michael Hirsch <scivision@users.noreply.gitlab.kitware.com> | 2022-10-21 13:49:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-10-21 14:55:15 (GMT) |
commit | 36d76ed07cb5de9d6687b048807786de7b8c46d7 (patch) | |
tree | b2846672e73fb18dc1b448e36dda24564e2a1092 /Help/manual/cmake.1.rst | |
parent | 63d28469cdfa24848f8374a9f77da92360b90898 (diff) | |
download | CMake-36d76ed07cb5de9d6687b048807786de7b8c46d7.zip CMake-36d76ed07cb5de9d6687b048807786de7b8c46d7.tar.gz CMake-36d76ed07cb5de9d6687b048807786de7b8c46d7.tar.bz2 |
Help: cmake(1), ctest(1), versionadded for key flags
Diffstat (limited to 'Help/manual/cmake.1.rst')
-rw-r--r-- | Help/manual/cmake.1.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 3dc6d69..35bd05f 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -142,6 +142,9 @@ source and build trees and generate a buildsystem: $ cmake . ``cmake [<options>] -S <path-to-source> -B <path-to-build>`` + + .. versionadded:: 3.13 + Uses ``<path-to-build>`` as the build tree and ``<path-to-source>`` as the source tree. The specified paths may be absolute or relative to the current working directory. The source tree must contain a @@ -555,6 +558,8 @@ following options: .. option:: -j [<jobs>], --parallel [<jobs>] + .. versionadded:: 3.12 + The maximum number of concurrent processes to use when building. If ``<jobs>`` is omitted the native build tool's default number is used. |