-fix line length
Alex
This commit is contained in:
parent
9110d0eab4
commit
a3815e67cf
@ -614,10 +614,10 @@ void cmExtraEclipseCDT4Generator::AppendIncludeDirectories(
|
|||||||
// handle framework include dirs on OSX, the remainder after the
|
// handle framework include dirs on OSX, the remainder after the
|
||||||
// Frameworks/ part has to be stripped
|
// Frameworks/ part has to be stripped
|
||||||
// /System/Library/Frameworks/GLUT.framework/Headers
|
// /System/Library/Frameworks/GLUT.framework/Headers
|
||||||
cmsys::RegularExpression frameworkRegex("(.+/Frameworks)/.+\\.framework/");
|
cmsys::RegularExpression frameworkRx("(.+/Frameworks)/.+\\.framework/");
|
||||||
if(frameworkRegex.find(dir.c_str()))
|
if(frameworkRx.find(dir.c_str()))
|
||||||
{
|
{
|
||||||
dir = frameworkRegex.match(1);
|
dir = frameworkRx.match(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(emittedDirs.find(dir) == emittedDirs.end())
|
if(emittedDirs.find(dir) == emittedDirs.end())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user