diff options
author | Josef Angstenberger <code@jtxa.de> | 2021-05-06 20:28:42 (GMT) |
---|---|---|
committer | Josef Angstenberger <code@jtxa.de> | 2021-05-07 15:00:18 (GMT) |
commit | 5950e5432554e3cc731006ed452bab5ddfffec23 (patch) | |
tree | 41e01846b45b3b88575fa8b6df8fcf34e73ba973 /Source/cmLocalGenerator.cxx | |
parent | 7072d837720d25bcd1906764e3eb23b940e4e4a4 (diff) | |
download | CMake-5950e5432554e3cc731006ed452bab5ddfffec23.zip CMake-5950e5432554e3cc731006ed452bab5ddfffec23.tar.gz CMake-5950e5432554e3cc731006ed452bab5ddfffec23.tar.bz2 |
Source: Fix typos and spelling in comments
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 21a9a44..b83a187 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1972,7 +1972,7 @@ void cmLocalGenerator::AddLanguageFlags(std::string& flags, } } - // Add VFS Overlay for Clang compiliers + // Add VFS Overlay for Clang compilers if (compiler == "Clang") { if (cmProp vfsOverlay = this->Makefile->GetDefinition("CMAKE_CLANG_VFS_OVERLAY")) { @@ -3931,7 +3931,7 @@ std::string ComputeCustomCommandRuleFileName(cmLocalGenerator& lg, // The output path contains a generator expression, but we must choose // a single source file path to which to attach the custom command. - // Use some heuristics to provie a nice-looking name when possible. + // Use some heuristics to provide a nice-looking name when possible. // If the only genex is $<CONFIG>, replace that gracefully. { @@ -4219,7 +4219,7 @@ std::vector<std::string> ComputeISPCObjectSuffixes(cmGeneratorTarget* target) auto pos = ispcTarget.find('-'); auto target_suffix = ispcTarget.substr(0, pos); if (target_suffix == - "avx1") { // when targetting avx1 ISPC uses the 'avx' output string + "avx1") { // when targeting avx1 ISPC uses the 'avx' output string target_suffix = "avx"; } ispcTarget = target_suffix; |