Merge topic 'fix-include-directories-unix-path'

b6f6654 Use the result of converting to a unix path.
This commit is contained in:
Brad King 2013-02-05 14:46:23 -05:00 committed by CMake Topic Stage
commit d1660f0895

View File

@ -2797,10 +2797,10 @@ std::vector<std::string> cmTarget::GetIncludeDirectories(const char *config)
if(uniqueIncludes.insert(inc).second)
{
includes.push_back(*li);
includes.push_back(inc);
if (debugIncludes)
{
usedIncludes += " * " + *li + "\n";
usedIncludes += " * " + inc + "\n";
}
}
}