Fix for bug #11274, VS10 custom commands that create files in INTDIR fix.

This commit is contained in:
Bill Hoffman 2010-09-29 17:02:04 -04:00
parent da5c8953b7
commit 3d68dd230d
1 changed files with 8 additions and 0 deletions

View File

@ -894,6 +894,14 @@ cmMakefile::AddCustomCommandToOutput(const std::vector<std::string>& outputs,
// Construct a rule file associated with the first output produced.
std::string outName = outputs[0];
outName += ".rule";
const char* dir =
this->LocalGenerator->GetGlobalGenerator()->
GetCMakeCFGInitDirectory();
if(dir && dir[0] == '$')
{
cmSystemTools::ReplaceString(outName, dir,
cmake::GetCMakeFilesDirectory());
}
// Check if the rule file already exists.
file = this->GetSource(outName.c_str());
if(file && file->GetCustomCommand() && !replace)