the generated makefiles/DSPfiles now depend on the aux source directory's

last modified date.
This commit is contained in:
Ian Scott 2002-02-04 08:28:54 -05:00
parent 11ff0db01f
commit 626251ddf0
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ bool cmAuxSourceDirectoryCommand::InitialPass(std::vector<std::string> const& ar
std::string tdir = m_Makefile->GetCurrentDirectory();
tdir += "/";
tdir += templateDirectory;
// The Makefile should be dependent on the directory's last mod date,
// so that if a file is added or removed from the directory, it will
// be rescanned, and the makefile rebuilt.
m_Makefile->AddCMakeDependFile(tdir.c_str());
// Load all the files in the directory
cmDirectory dir;
if(dir.Load(tdir.c_str()))