Ver Fonte

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

Brad King há 18 anos atrás
pai
commit
6ad79d13dd
1 ficheiros alterados com 1 adições e 1 exclusões
  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);