mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-25 07:58:59 -06:00
ENH: make sure custom commands depend on full path files only: Bill as Andy
This commit is contained in:
@@ -834,8 +834,14 @@ cmGlobalXCodeGenerator::AddCommandsToBuildPhase(cmXCodeObject* buildphase,
|
||||
if(!this->FindTarget(m_CurrentProject.c_str(),
|
||||
d->c_str()))
|
||||
{
|
||||
makefileStream << "\\\n" << this
|
||||
->ConvertToRelativeForMake(d->c_str());
|
||||
// if the depend is not a target but
|
||||
// is a full path then use it, if not then
|
||||
// just skip it
|
||||
if(cmSystemTools::FileIsFullPath(d->c_str()))
|
||||
{
|
||||
makefileStream << "\\\n" << this
|
||||
->ConvertToRelativeForMake(d->c_str());
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user