mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-26 02:14:22 +00:00
Projucer: Repeat writeMainProjectFile() when saving so that config flags are written correctly
This commit is contained in:
parent
6ee9030e37
commit
d55f4956f8
1 changed files with 3 additions and 1 deletions
|
|
@ -89,7 +89,6 @@ public:
|
|||
if (errors.size() == 0)
|
||||
{
|
||||
writeMainProjectFile();
|
||||
project.updateModificationTime();
|
||||
|
||||
writeAppConfigFile (modules, appConfigUserContent);
|
||||
writeBinaryDataFiles();
|
||||
|
|
@ -98,6 +97,9 @@ public:
|
|||
writeProjects (modules, specifiedExporterToSave, ! showProgressBox);
|
||||
writeAppConfigFile (modules, appConfigUserContent); // (this is repeated in case the projects added anything to it)
|
||||
|
||||
writeMainProjectFile(); // this is repeated so that the config flags are written correctly
|
||||
project.updateModificationTime();
|
||||
|
||||
if (generatedCodeFolder.exists())
|
||||
writeReadmeFile();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue