|
@@ -270,7 +270,8 @@ cmGlobalVisualStudio8Generator
|
|
|
void
|
|
void
|
|
|
cmGlobalVisualStudio8Generator
|
|
cmGlobalVisualStudio8Generator
|
|
|
::WriteProjectConfigurations(std::ostream& fout, const char* name,
|
|
::WriteProjectConfigurations(std::ostream& fout, const char* name,
|
|
|
- bool partOfDefaultBuild, const char* platformMapping)
|
|
|
|
|
|
|
+ bool partOfDefaultBuild,
|
|
|
|
|
+ const char* platformMapping)
|
|
|
{
|
|
{
|
|
|
std::string guid = this->GetGUID(name);
|
|
std::string guid = this->GetGUID(name);
|
|
|
for(std::vector<std::string>::iterator i = this->Configurations.begin();
|
|
for(std::vector<std::string>::iterator i = this->Configurations.begin();
|
|
@@ -278,12 +279,14 @@ cmGlobalVisualStudio8Generator
|
|
|
{
|
|
{
|
|
|
fout << "\t\t{" << guid << "}." << *i
|
|
fout << "\t\t{" << guid << "}." << *i
|
|
|
<< "|" << this->GetPlatformName() << ".ActiveCfg = " << *i << "|"
|
|
<< "|" << this->GetPlatformName() << ".ActiveCfg = " << *i << "|"
|
|
|
- << (platformMapping ? platformMapping : this->GetPlatformName()) << "\n";
|
|
|
|
|
|
|
+ << (platformMapping ? platformMapping : this->GetPlatformName())
|
|
|
|
|
+ << "\n";
|
|
|
if(partOfDefaultBuild)
|
|
if(partOfDefaultBuild)
|
|
|
{
|
|
{
|
|
|
fout << "\t\t{" << guid << "}." << *i
|
|
fout << "\t\t{" << guid << "}." << *i
|
|
|
<< "|" << this->GetPlatformName() << ".Build.0 = " << *i << "|"
|
|
<< "|" << this->GetPlatformName() << ".Build.0 = " << *i << "|"
|
|
|
- << (platformMapping ? platformMapping : this->GetPlatformName()) << "\n";
|
|
|
|
|
|
|
+ << (platformMapping ? platformMapping : this->GetPlatformName())
|
|
|
|
|
+ << "\n";
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|