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:
parent
77d4ac7242
commit
6efb77bed3
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue