Ver Fonte

Ninja: Make config uppercase in object order target

Fixes: #20539
Kyle Edwards há 5 anos atrás
pai
commit
2f949be4b3
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      Source/cmGlobalNinjaGenerator.cxx

+ 1 - 1
Source/cmGlobalNinjaGenerator.cxx

@@ -1065,7 +1065,7 @@ std::string cmGlobalNinjaGenerator::OrderDependsTargetForTarget(
   cmGeneratorTarget const* target, const std::string& config)
 {
   return "cmake_object_order_depends_target_" + target->GetName() + "_" +
-    config;
+    cmSystemTools::UpperCase(config);
 }
 
 void cmGlobalNinjaGenerator::AppendTargetOutputs(