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:
parent
47ce713d0b
commit
7792fe2b34
1 changed files with 2 additions and 2 deletions
|
|
@ -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()));
|
||||
}
|
||||
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue