diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-18 15:37:04 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-18 19:09:32 (GMT) |
commit | c36910476a9c41c22b0abaa028b0dd2a8f7d7e40 (patch) | |
tree | e0292c03ed1ef3fa2e730fab28633473ba44cbcf /Help/prop_gbl | |
parent | 391c53a851eaffae40b210c3cdefd31d86b45f90 (diff) | |
download | CMake-c36910476a9c41c22b0abaa028b0dd2a8f7d7e40.zip CMake-c36910476a9c41c22b0abaa028b0dd2a8f7d7e40.tar.gz CMake-c36910476a9c41c22b0abaa028b0dd2a8f7d7e40.tar.bz2 |
Help: remove links from pages to themselves
At least the top-reference links. Internal `:ref:` usages have been left
intact.
Diffstat (limited to 'Help/prop_gbl')
-rw-r--r-- | Help/prop_gbl/AUTOGEN_SOURCE_GROUP.rst | 2 | ||||
-rw-r--r-- | Help/prop_gbl/JOB_POOLS.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Help/prop_gbl/AUTOGEN_SOURCE_GROUP.rst b/Help/prop_gbl/AUTOGEN_SOURCE_GROUP.rst index 07c732b..600a64a 100644 --- a/Help/prop_gbl/AUTOGEN_SOURCE_GROUP.rst +++ b/Help/prop_gbl/AUTOGEN_SOURCE_GROUP.rst @@ -9,7 +9,7 @@ Name of the :command:`source_group` for :prop_tgt:`AUTOMOC`, Files generated by :prop_tgt:`AUTOMOC`, :prop_tgt:`AUTORCC` and :prop_tgt:`AUTOUIC` are not always known at configure time and therefore can't be passed to :command:`source_group`. -:prop_gbl:`AUTOGEN_SOURCE_GROUP` can be used instead to generate or select +``AUTOGEN_SOURCE_GROUP`` can be used instead to generate or select a source group for :prop_tgt:`AUTOMOC`, :prop_tgt:`AUTORCC` and :prop_tgt:`AUTOUIC` generated files. diff --git a/Help/prop_gbl/JOB_POOLS.rst b/Help/prop_gbl/JOB_POOLS.rst index 10c8243..5dfe6de 100644 --- a/Help/prop_gbl/JOB_POOLS.rst +++ b/Help/prop_gbl/JOB_POOLS.rst @@ -5,7 +5,7 @@ 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 +The ``JOB_POOLS`` property is a semicolon-separated list of pairs using the syntax ``NAME=integer`` (without a space after the equality sign). For instance: @@ -21,7 +21,7 @@ or per target by setting the target properties :command:`Custom commands <add_custom_command>` and :command:`custom targets <add_custom_target>` can specify pools using the option ``JOB_POOL``. -Using a pool that is not defined by :prop_gbl:`JOB_POOLS` causes +Using a pool that is not defined by ``JOB_POOLS`` causes an error by ninja at build time. If not set, this property uses the value of the :variable:`CMAKE_JOB_POOLS` |