Browse Source

Projucer: Fix Code::Blocks exporter for Windows

v7.0.9
attila Anthony Nicholls 2 years ago
parent
commit
921baaeb57
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CodeBlocks.h

+ 3
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CodeBlocks.h View File

@@ -939,10 +939,12 @@ private:
void addCompileUnits (XmlElement& xml) const
{
if (linuxSubprocessHelperProperties.shouldUseLinuxSubprocessHelper())
{
for (const auto& helperTarget : helperTargets)
helperTarget.addCompileUnits (xml);
addSubprocessHelperBinarySourceCompileUnit (xml);
addSubprocessHelperBinarySourceCompileUnit (xml);
}
for (int i = 0; i < getAllGroups().size(); ++i)
addCompileUnits (getAllGroups().getReference(i), xml);


Loading…
Cancel
Save