1
0
Fork 0
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:
tpoole 2017-06-27 17:46:54 +01:00
parent 0874e47a35
commit 1f8ccff728

View file

@ -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