summaryrefslogtreecommitdiff
path: root/Source/cmMakeDepend.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-06-10 14:19:09 -0400
committerKen Martin <ken.martin@kitware.com>2002-06-10 14:19:09 -0400
commitfd26d44f5f244844d90dba801af57294283ceae9 (patch)
tree43933ceb15f2e65cd4efa58104aefe939b0474aa /Source/cmMakeDepend.cxx
parent781fac21f0e3ff4b12dbda9ef5778c730a8285ed (diff)
downloadcmake-fd26d44f5f244844d90dba801af57294283ceae9.tar.gz
now includes current include files directory when searching for files it includes
Diffstat (limited to 'Source/cmMakeDepend.cxx')
-rw-r--r--Source/cmMakeDepend.cxx32
1 files changed, 24 insertions, 8 deletions
diff --git a/Source/cmMakeDepend.cxx b/Source/cmMakeDepend.cxx
index 78a7c1f5e9..b56f26a734 100644
--- a/Source/cmMakeDepend.cxx
+++ b/Source/cmMakeDepend.cxx
@@ -80,7 +80,7 @@ void cmMakeDepend::SetMakefile(const cmMakefile* makefile)
const cmDependInformation* cmMakeDepend::FindDependencies(const char* file)
{
- cmDependInformation* info = this->GetDependInformation(file);
+ cmDependInformation* info = this->GetDependInformation(file,NULL);
this->GenerateDependInformation(info);
return info;
}
@@ -235,15 +235,20 @@ void cmMakeDepend::DependWalk(cmDependInformation* info)
void cmMakeDepend::AddDependency(cmDependInformation* info, const char* file)
{
- cmDependInformation* dependInfo = this->GetDependInformation(file);
+ cmDependInformation* dependInfo =
+ this->GetDependInformation(file,
+ cmSystemTools::GetFilenamePath(
+ cmSystemTools::CollapseFullPath(
+ info->m_FullPath.c_str())).c_str());
this->GenerateDependInformation(dependInfo);
info->AddDependencies(dependInfo);
}
-cmDependInformation* cmMakeDepend::GetDependInformation(const char* file)
+cmDependInformation* cmMakeDepend::GetDependInformation(const char* file,
+ const char *extraPath)
{
// Get the full path for the file so that lookup is unambiguous.
- std::string fullPath = this->FullPath(file);
+ std::string fullPath = this->FullPath(file, extraPath);
// Try to find the file's instance of cmDependInformation.
DependInformationMap::const_iterator result =
@@ -279,7 +284,7 @@ void cmMakeDepend::GenerateMakefileDependencies()
if(!(*i)->GetIsAHeaderFileOnly())
{
cmDependInformation* info =
- this->GetDependInformation((*i)->GetFullPath().c_str());
+ this->GetDependInformation((*i)->GetFullPath().c_str(),NULL);
this->AddFileToSearchPath(info->m_FullPath.c_str());
info->m_cmSourceFile = *i;
this->GenerateDependInformation(info);
@@ -290,11 +295,11 @@ void cmMakeDepend::GenerateMakefileDependencies()
// find the full path to fname by searching the m_IncludeDirectories array
-std::string cmMakeDepend::FullPath(const char* fname)
+std::string cmMakeDepend::FullPath(const char* fname, const char *extraPath)
{
if(cmSystemTools::FileExists(fname))
{
- return std::string(fname);
+ return std::string(cmSystemTools::CollapseFullPath(fname));
}
for(std::vector<std::string>::iterator i = m_IncludeDirectories.begin();
@@ -305,10 +310,21 @@ std::string cmMakeDepend::FullPath(const char* fname)
path = path + fname;
if(cmSystemTools::FileExists(path.c_str()))
{
- return path;
+ return cmSystemTools::CollapseFullPath(path.c_str());
}
}
+ if (extraPath)
+ {
+ std::string path = extraPath;
+ path = path + "/";
+ path = path + fname;
+ if(cmSystemTools::FileExists(path.c_str()))
+ {
+ return cmSystemTools::CollapseFullPath(path.c_str());
+ }
+ }
+
// Couldn't find the file.
return std::string(fname);
}