diff --git a/extras/Projucer/Source/Utility/PIPs/jucer_PIPGenerator.cpp b/extras/Projucer/Source/Utility/PIPs/jucer_PIPGenerator.cpp index 675619b25d..72ea529fe5 100644 --- a/extras/Projucer/Source/Utility/PIPs/jucer_PIPGenerator.cpp +++ b/extras/Projucer/Source/Utility/PIPs/jucer_PIPGenerator.cpp @@ -511,6 +511,9 @@ Array PIPGenerator::replaceRelativeIncludesAndGetFilesToMove() auto path = line.fromFirstOccurrenceOf ("#include", false, false); path = path.removeCharacters ("\"").trim(); + if (path.startsWith ("<") && path.endsWith (">")) + continue; + auto file = pipFile.getParentDirectory().getChildFile (path); files.add (file);