1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Fixed a bug creating plug-in projects from PIPs

This commit is contained in:
Tom Poole 2018-11-05 16:30:59 +00:00
parent fe49d69dfc
commit f9017f7adc

View file

@ -138,12 +138,10 @@ Result PIPGenerator::createJucerFile()
if (result != Result::ok())
return result;
addModules (root);
addExporters (root);
createFiles (root);
if (! metadata[Ids::moduleFlags].toString().isEmpty())
setModuleFlags (root);
addModules (root);
addExporters (root);
createFiles (root);
setModuleFlags (root);
auto outputFile = outputDirectory.getChildFile (metadata[Ids::name].toString() + ".jucer");