mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-30 02:50:05 +00:00
Projucer: Fixed active VS build configuration bug
This commit is contained in:
parent
0874e47a35
commit
1f8ccff728
1 changed files with 3 additions and 2 deletions
|
|
@ -828,8 +828,9 @@ protected:
|
|||
{
|
||||
const MSVCBuildConfiguration& config = dynamic_cast<const MSVCBuildConfiguration&> (*i);
|
||||
const String configName = config.createMSVCConfigName();
|
||||
for (auto& suffix : { ".Build.0", ".ActiveCfg" })
|
||||
out << "\t\t" << target->getProjectGuid() << "." << configName << suffix << " = " << configName << newLine;
|
||||
|
||||
for (auto& suffix : { "ActiveCfg", "Build.0", "Deploy.0" })
|
||||
out << "\t\t" << target->getProjectGuid() << "." << configName << "." << suffix << " = " << configName << newLine;
|
||||
}
|
||||
|
||||
out << "\tEndGlobalSection" << newLine
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue