Browse Source

Fixed a bug escaping MTL_HEADER_SEARCH_PATHS in the Xcode exporter

tags/2021-05-28
Tom Poole 4 years ago
parent
commit
6efb77bed3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h

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

@@ -1407,7 +1407,7 @@ public:
for (auto& path : mtlHeaderPaths) for (auto& path : mtlHeaderPaths)
path = path.unquoted(); path = path.unquoted();
s.set ("MTL_HEADER_SEARCH_PATHS", mtlHeaderPaths.joinIntoString (" ").quoted());
s.set ("MTL_HEADER_SEARCH_PATHS", "\"" + mtlHeaderPaths.joinIntoString (" ") + "\"");
headerPaths.add ("\"$(inherited)\""); headerPaths.add ("\"$(inherited)\"");
s.set ("HEADER_SEARCH_PATHS", indentParenthesisedList (headerPaths, 1)); s.set ("HEADER_SEARCH_PATHS", indentParenthesisedList (headerPaths, 1));


Loading…
Cancel
Save