Browse Source

Projucer: Replace search paths starting with "~" with "$(HOME)" in the Xcode exporter to make Xcode 10 happy

tags/2021-05-28
ed 6 years ago
parent
commit
9ae332cc8f
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h

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

@@ -1518,6 +1518,8 @@ public:
for (auto& s : paths)
{
// Xcode 10 can't deal with search paths starting with "~" so we need to replace them here...
s = sanitisePath (s);
s = owner.replacePreprocessorTokens (config, s);
if (s.containsChar (' '))


Loading…
Cancel
Save