Pārlūkot izejas kodu

BUG: Construction of COMPILE_DEFINITIONS_<CONFIG> property name must use upper-case config name.

Brad King 18 gadi atpakaļ
vecāks
revīzija
6ad79d13dd
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 1 - 1
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -1849,7 +1849,7 @@ void cmLocalUnixMakefileGenerator3
   std::vector<std::string> defines;
   {
   std::string defPropName = "COMPILE_DEFINITIONS_";
-  defPropName += this->ConfigurationName;
+  defPropName += cmSystemTools::UpperCase(this->ConfigurationName);
   if(const char* ddefs = this->Makefile->GetProperty("COMPILE_DEFINITIONS"))
     {
     cmSystemTools::ExpandListArgument(ddefs, defines);