Merge topic 'reduce-utf-8'

96b3a4e6c7 Style: Replace some UTF-8 characters with ASCII equivalents

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !12319
This commit is contained in:
Brad King
2026-07-27 09:56:23 -04:00
committed by Kitware Robot
13 changed files with 26 additions and 26 deletions
+8 -8
View File
@@ -290,13 +290,13 @@ List of CPack DEB generator specific variables:
Possible values are:
``lzma``
Lempel–Ziv–Markov chain algorithm
Lempel-Ziv-Markov chain algorithm
``xz``
XZ Utils LZMA2 (Lempel–Ziv–Markov chain algorithm, version 2) compression
XZ Utils LZMA2 (Lempel-Ziv-Markov chain algorithm, version 2) compression
``bzip2``
bzip2 Burrows–Wheeler algorithm
bzip2 Burrows-Wheeler algorithm
``gzip``
GNU Gzip Deflate compression
@@ -323,11 +323,11 @@ List of CPack DEB generator specific variables:
The valid range and interpretation depend on the selected compression type:
- ``gzip`` – level 1–9
- ``bzip2`` – level 1–9
- ``xz`` – level 1–9
- ``lzma`` – level 1–9
- ``zstd`` – level 1–19
- ``gzip`` - level 1-9
- ``bzip2`` - level 1-9
- ``xz`` - level 1-9
- ``lzma`` - level 1-9
- ``zstd`` - level 1-19
Example usage:
+3 -3
View File
@@ -252,13 +252,13 @@ List of CPack RPM generator specific variables:
Possible values are:
``lzma``
Lempel–Ziv–Markov chain algorithm
Lempel-Ziv-Markov chain algorithm
``xz``
XZ Utils LZMA2 (Lempel–Ziv–Markov chain algorithm, version 2) compression
XZ Utils LZMA2 (Lempel-Ziv-Markov chain algorithm, version 2) compression
``bzip2``
bzip2 Burrows–Wheeler algorithm
bzip2 Burrows-Wheeler algorithm
``gzip``
GNU Gzip Deflate compression
+4 -4
View File
@@ -23,8 +23,8 @@ This writes a FASTBuild configuration file named ``fbuild.bff`` into
This generator also produces IDE project files for Visual Studio and Xcode,
which are placed under:
* ``<path-to-build>/VisualStudio`` – Visual Studio solution and projects
* ``<path-to-build>/XCode`` – Xcode workspace and projects
* ``<path-to-build>/VisualStudio`` - Visual Studio solution and projects
* ``<path-to-build>/XCode`` - Xcode workspace and projects
These IDE files can be generated by building ``xcode`` or ``solution`` targets
and will build using FASTBuild as the backend.
@@ -77,9 +77,9 @@ Target Properties
The following target properties can be used to fine-tune behavior on a
per-target basis:
* :prop_tgt:`FASTBUILD_CACHING` –
* :prop_tgt:`FASTBUILD_CACHING` -
disables caching for a specific target.
* :prop_tgt:`FASTBUILD_DISTRIBUTION` –
* :prop_tgt:`FASTBUILD_DISTRIBUTION` -
disables distributed compilation for a specific target.
Notes
+2 -2
View File
@@ -228,8 +228,8 @@ Compiler pre definitions for ``moc`` are written to the ``moc_predefs.h`` file.
The generation of this file can be enabled or disabled in this target property.
:prop_tgt:`AUTOMOC_INCLUDE_DIRECTORIES`:
Specifies one or more include directories for ``AUTOMOC`` to pass explicitly to ``moc``
instead of automatically discovering a target’s include directories.
Specifies one or more include directories for ``AUTOMOC`` to pass explicitly
to ``moc`` instead of automatically discovering a target's include directories.
:prop_sf:`SKIP_AUTOMOC`:
Sources and headers can be excluded from ``AUTOMOC`` processing by
@@ -4,7 +4,7 @@ AUTOMOC_INCLUDE_DIRECTORIES
.. versionadded:: 4.1
Specifies zero or more include directories for AUTOMOC to pass explicitly to
the Qt Meta‑Object Compiler (``moc``) instead of automatically discovering a
the Qt Meta-Object Compiler (``moc``) instead of automatically discovering a
target's include directories.
When this property is set on a target, only the directories listed here will be
+1 -1
View File
@@ -16,7 +16,7 @@ is set, it takes precedence over this target-wide property.
This is a convenience alternative to setting the :prop_sf:`SKIP_LINTING`
source file property individually on each source. If either the target's
:prop_tgt:`SKIP_LINTING` or file set's :prop_fs:`SKIP_LINTING` including this
source or a source’s :prop_sf:`SKIP_LINTING` is enabled, that source will be
source or a source's :prop_sf:`SKIP_LINTING` is enabled, that source will be
excluded from linting.
The property has no effect on targets that do not have sources.
@@ -4,7 +4,7 @@ CMAKE_AUTOMOC_INCLUDE_DIRECTORIES
.. versionadded:: 4.1
Specifies zero or more include directories for AUTOMOC to pass explicitly to
the Qt Meta‑Object Compiler (``moc``) instead of automatically discovering
the Qt Meta-Object Compiler (``moc``) instead of automatically discovering
each target's include directories.
The directories listed here will replace any include paths discovered from
@@ -11,7 +11,7 @@ inputs have changed or the byproduct file is missing.
.. note::
When this variable is ``OFF`` (the default), ``BYPRODUCTS`` are treated
similarly to how Ninja handles them — as opaque side effects — and the
similarly to how Ninja handles them - as opaque side effects - and the
generator emits ``ExecAlways`` nodes to ensure they always run.
Defaults to ``OFF``.
@@ -3,7 +3,7 @@ CMAKE_FASTBUILD_USE_LIGHTCACHE
.. versionadded:: 4.2
Enables FASTBuild’s *light caching* mode, which accelerates cache lookups by
Enables FASTBuild's *light caching* mode, which accelerates cache lookups by
parsing source files directly (instead of invoking the compiler preprocessor).
See the `FASTBuild Compiler() documentation <https://www.fastbuild.org/docs/functions/compiler.html>`_
+1 -1
View File
@@ -20,7 +20,7 @@ class cmLocalGenerator;
*
* Stored on cmMakefile at configure time. At generate time,
* ComputeBuildFileGenerators() calls Compute(lg) to resolve export set
* targets and supply the local generator — mirroring
* targets and supply the local generator - mirroring
* cmExportBuildFileGenerator.
*/
class cmBuildSbomGenerator
+1 -1
View File
@@ -312,7 +312,7 @@ std::string cmFindProgramCommand::GetBundleExecutable(
kCFAllocatorDefault, bundlePath.c_str(), kCFStringEncodingUTF8);
// Make a CFURLRef from the CFString representation of the
// bundle’s path.
// bundle's path.
CFURLRef bundleURL = CFURLCreateWithFileSystemPath(
kCFAllocatorDefault, bundlePathCFS, kCFURLPOSIXPathStyle, true);
+1 -1
View File
@@ -856,7 +856,7 @@ public:
void Initialize(TransformSelector* /*selector*/,
std::vector<std::string> const& /*args*/) override
{
// This overload must not be used for APPLY — it lacks cmMakefile context.
// This overload must not be used for APPLY - it lacks cmMakefile context.
throw transform_error(
"sub-command TRANSFORM, action APPLY requires cmMakefile context.");
}
+1 -1
View File
@@ -88,7 +88,7 @@ protected:
* install leaves consult cmGlobalGenerator::FindInstallSbomInfo. */
virtual SbomInfo FindSbomInfoFor(cmGeneratorTarget const* target) const = 0;
/** The set of targets the SBOM directly describes — derived from the
/** The set of targets the SBOM directly describes - derived from the
* associated export sets. */
std::set<cmGeneratorTarget const*> CollectTargets() const;