Browse Source

Projucer: Fixed a Linux Makefile library name bug

tags/2021-05-28
tpoole 7 years ago
parent
commit
b936eaeebc
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h

+ 2
- 2
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h View File

@@ -556,8 +556,8 @@ private:
libraries.addTokens (getExternalLibrariesString(), ";", "\"'"); libraries.addTokens (getExternalLibrariesString(), ";", "\"'");
libraries.removeEmptyStrings(); libraries.removeEmptyStrings();
if (libraries.size() != 0)
result.add (replacePreprocessorTokens (config, libraries.joinIntoString (" ")).trim());
for (auto& lib : libraries)
result.add (replacePreprocessorTokens (config, lib).trim());
return result; return result;
} }


Loading…
Cancel
Save