1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a bug escaping MTL_HEADER_SEARCH_PATHS in the Xcode exporter

This commit is contained in:
Tom Poole 2021-03-15 10:07:23 +00:00
parent 77d4ac7242
commit 6efb77bed3

View file

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