Browse Source

Projucer: Fixed an error in the PIP generator

tags/2021-05-28
Tom Poole 6 years ago
parent
commit
a92b231677
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Utility/PIPs/jucer_PIPGenerator.cpp

+ 1
- 1
extras/Projucer/Source/Utility/PIPs/jucer_PIPGenerator.cpp View File

@@ -235,7 +235,7 @@ ValueTree PIPGenerator::createModulePathChild (const String& moduleID)
ValueTree PIPGenerator::createBuildConfigChild (bool isDebug) ValueTree PIPGenerator::createBuildConfigChild (bool isDebug)
{ {
ValueTree child (Ids::CONFIGURATIONS);
ValueTree child (Ids::CONFIGURATION);
child.setProperty (Ids::name, isDebug ? "Debug" : "Release", nullptr); child.setProperty (Ids::name, isDebug ? "Debug" : "Release", nullptr);
child.setProperty (Ids::isDebug, isDebug ? 1 : 0, nullptr); child.setProperty (Ids::isDebug, isDebug ? 1 : 0, nullptr);


Loading…
Cancel
Save