Report directory with missing source file (#11677)

Previously the error message for code like

  add_executable(myexe does_not_exist/mysrc.c)

mentioned only that "mysrc.c" is not found.  Report the directory too.
This commit is contained in:
Brad King 2011-01-15 08:00:11 -05:00
parent 28a0403c34
commit 9cefce09f6
1 changed files with 7 additions and 2 deletions

View File

@ -187,8 +187,13 @@ bool cmSourceFile::FindFullPath(std::string* error)
}
cmOStringStream e;
e << "Cannot find source file \"" << this->Location.GetName() << "\"";
e << ". Tried extensions";
std::string missing = this->Location.GetDirectory();
if(!missing.empty())
{
missing += "/";
}
missing += this->Location.GetName();
e << "Cannot find source file:\n " << missing << "\nTried extensions";
for(std::vector<std::string>::const_iterator ext = srcExts.begin();
ext != srcExts.end(); ++ext)
{