summaryrefslogtreecommitdiffstats
path: root/Source/cmNinjaTargetGenerator.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2022-12-14 18:44:52 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2022-12-15 23:43:47 (GMT)
commite84fcbcb0b7c33caf35fbdfde411e8636f4d31f9 (patch)
tree332a054ac99340340fa00103c5eee72046569143 /Source/cmNinjaTargetGenerator.cxx
parent5e35913382d0bbca6b843f6bbe2fd52fa47d32c9 (diff)
downloadCMake-e84fcbcb0b7c33caf35fbdfde411e8636f4d31f9.zip
CMake-e84fcbcb0b7c33caf35fbdfde411e8636f4d31f9.tar.gz
CMake-e84fcbcb0b7c33caf35fbdfde411e8636f4d31f9.tar.bz2
cxxmodules: support new round of Clang patches
These patches now support the `-MF` output, so remove the `none` support added just for the old patchset which did not use it. Also update the flag name to `-fmodule-output=`. Due to the new Clang module mapper flag, use a new experimental support UUID as well.
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r--Source/cmNinjaTargetGenerator.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx
index 0807a98..6887376 100644
--- a/Source/cmNinjaTargetGenerator.cxx
+++ b/Source/cmNinjaTargetGenerator.cxx
@@ -562,9 +562,6 @@ cmNinjaRule GetScanRule(
if (deptype == "msvc"_s) {
rule.DepType = deptype;
rule.DepFile.clear();
- } else if (deptype == "none"_s) {
- rule.DepType.clear(); // no deps= for multiple outputs
- rule.DepFile.clear();
} else {
rule.DepType.clear(); // no deps= for multiple outputs
rule.DepFile = "$DEP_FILE";