mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
COMP: Handle both ansi and non-ansi C
This commit is contained in:
@@ -56,6 +56,14 @@ bool cmIncludeDirectoryCommand
|
||||
tmp += unixPath;
|
||||
unixPath = tmp;
|
||||
}
|
||||
/*
|
||||
if ( !cmSystemTools::FileExists(unixPath.c_str()) )
|
||||
{
|
||||
std::string out = "Cannot find directory: " + unixPath;
|
||||
this->SetError(out.c_str());
|
||||
return false;
|
||||
}
|
||||
*/
|
||||
this->Makefile->AddIncludeDirectory(unixPath.c_str(), before);
|
||||
}
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user