summaryrefslogtreecommitdiff
path: root/share/cmake-3.5/Help/prop_gbl/JOB_POOLS.rst
diff options
context:
space:
mode:
Diffstat (limited to 'share/cmake-3.5/Help/prop_gbl/JOB_POOLS.rst')
-rwxr-xr-xshare/cmake-3.5/Help/prop_gbl/JOB_POOLS.rst23
1 files changed, 23 insertions, 0 deletions
diff --git a/share/cmake-3.5/Help/prop_gbl/JOB_POOLS.rst b/share/cmake-3.5/Help/prop_gbl/JOB_POOLS.rst
new file mode 100755
index 0000000..2ce74b8
--- /dev/null
+++ b/share/cmake-3.5/Help/prop_gbl/JOB_POOLS.rst
@@ -0,0 +1,23 @@
+JOB_POOLS
+---------
+
+Ninja only: List of available pools.
+
+A pool is a named integer property and defines the maximum number
+of concurrent jobs which can be started by a rule assigned to the pool.
+The :prop_gbl:`JOB_POOLS` property is a semicolon-separated list of
+pairs using the syntax NAME=integer (without a space after the equality sign).
+
+For instance:
+
+.. code-block:: cmake
+
+ set_property(GLOBAL PROPERTY JOB_POOLS two_jobs=2 ten_jobs=10)
+
+Defined pools could be used globally by setting
+:variable:`CMAKE_JOB_POOL_COMPILE` and :variable:`CMAKE_JOB_POOL_LINK`
+or per target by setting the target properties
+:prop_tgt:`JOB_POOL_COMPILE` and :prop_tgt:`JOB_POOL_LINK`.
+
+Build targets provided by CMake that are meant for individual interactive
+use, such as ``install``, are placed in the ``console`` pool automatically.