Procházet zdrojové kódy

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

Brad King před 18 roky
rodič
revize
6ad79d13dd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);