ENH: Updated generated dependencies since cable's installation directory now uses separate CxxTypes and WrapTclFacility subdirecories for includes.

This commit is contained in:
Brad King 2001-08-29 17:10:25 -04:00
parent f1e2a7062b
commit 2eefa2286a

View File

@ -231,7 +231,7 @@ void cmCableWrapTclCommand::GenerateCableFiles() const
cmSourceFile file; cmSourceFile file;
file.SetName(packageTclFileName.c_str(), outDir.c_str(), "cxx", false); file.SetName(packageTclFileName.c_str(), outDir.c_str(), "cxx", false);
// Set dependency hints. // Set dependency hints.
file.GetDepends().push_back("wrapCalls.h"); file.GetDepends().push_back("WrapTclFacility/wrapCalls.h");
m_Makefile->AddSource(file, m_TargetName.c_str()); m_Makefile->AddSource(file, m_TargetName.c_str());
} }
@ -398,7 +398,7 @@ void cmCableWrapTclCommand::GenerateCableClassFiles(const char* name,
{ {
file.GetDepends().push_back(*source); file.GetDepends().push_back(*source);
} }
file.GetDepends().push_back("wrapCalls.h"); file.GetDepends().push_back("WrapTclFacility/wrapCalls.h");
m_Makefile->AddSource(file, m_TargetName.c_str()); m_Makefile->AddSource(file, m_TargetName.c_str());
} }