1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00

Projucer: Fixed a bug parsing search paths in module headers

This commit is contained in:
Tom Poole 2017-11-27 15:34:49 +00:00
parent 47ce713d0b
commit 7792fe2b34

View file

@ -360,8 +360,8 @@ void LibraryModule::addSettingsForModuleToExporter (ProjectExporter& exporter, P
StringArray paths;
paths.addTokens (extraInternalSearchPaths, true);
for (int i = 0; i < paths.size(); ++i)
exporter.addToExtraSearchPaths (moduleRelativePath.getChildFile (paths.getReference(i)));
for (auto& path : paths)
exporter.addToExtraSearchPaths (moduleRelativePath.getChildFile (path.unquoted()));
}
{