BUG: Added inclusion of pre-build rules for custom targets.

This commit is contained in:
Brad King 2005-04-26 08:51:45 -04:00
parent 8e38fd8792
commit 2b05a503e4

View File

@ -789,8 +789,10 @@ cmLocalUnixMakefileGenerator2
std::vector<std::string> commands;
std::vector<std::string> depends;
// Utility targets store their rules in post-build commands.
// Utility targets store their rules in pre- and post-build commands.
this->AppendCustomDepends(depends, target.GetPreBuildCommands());
this->AppendCustomDepends(depends, target.GetPostBuildCommands());
this->AppendCustomCommands(commands, target.GetPreBuildCommands());
this->AppendCustomCommands(commands, target.GetPostBuildCommands());
// Add dependencies on targets that must be built first.