mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: Only write plugin characteristics file once
This commit is contained in:
parent
df6f60f2e0
commit
193a47c10b
2 changed files with 4 additions and 3 deletions
|
|
@ -191,9 +191,6 @@ void ProjectSaver::writeProjects (const OwnedArray<LibraryModule>& modules, cons
|
|||
for (auto& module: modules)
|
||||
module->addSettingsForModuleToExporter (*exporter, *this);
|
||||
|
||||
if (project.getProjectType().isAudioPlugin())
|
||||
writePluginCharacteristicsFile();
|
||||
|
||||
generatedFilesGroup.sortAlphabetically (true, true);
|
||||
exporter->getAllGroups().add (generatedFilesGroup);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -98,6 +98,10 @@ public:
|
|||
writeAppHeader (modules);
|
||||
writeModuleCppWrappers (modules);
|
||||
writeProjects (modules, specifiedExporterToSave, ! showProgressBox);
|
||||
|
||||
if (project.getProjectType().isAudioPlugin())
|
||||
writePluginCharacteristicsFile();
|
||||
|
||||
writeAppConfigFile (modules, appConfigUserContent); // (this is repeated in case the projects added anything to it)
|
||||
|
||||
// if the project root has changed after writing the other files then re-save it
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue