Help: Improve language in INSTALL_PARALLEL doc

Remove unneeded comma, clarify and link reference to Ninja generators, and substitute ``ON`` for enabled.
This commit is contained in:
Martin Duffy
2025-01-27 09:36:41 -05:00
parent 24a6891065
commit f1a80380ae

View File

@@ -6,7 +6,7 @@ INSTALL_PARALLEL
Enables parallel installation option for a project. The install code for each
subdirectory added with ``add_subdirectory`` can run independently.
When using the Ninja generator, setting this property to ``ON``, causes
When using the :ref:`Ninja Generators`, enabling this property causes
``install/local`` targets have the console pool disabled, allowing them to run
concurrently.
@@ -15,7 +15,7 @@ explicit dependency on the ``install/local`` target for each subdirectory.
.. versionadded:: 3.31
When this property is ``ON``, ``cmake --install`` can be given the ``-j <jobs>``
When this property is enabled, ``cmake --install`` can be given the ``-j <jobs>``
or ``--parallel <jobs>`` option to specify a maximum number of jobs.
The :envvar:`CMAKE_INSTALL_PARALLEL_LEVEL` environment variable specifies a
default parallel level if this option is not provided.