This commit is contained in:
Bill Hoffman 2003-06-04 10:13:01 -04:00
parent 48cd349c81
commit 8eda3791e7
1 changed files with 2 additions and 2 deletions

View File

@ -473,13 +473,13 @@ void cmLocalVisualStudio6Generator::WriteCustomRule(std::ostream& fout,
<< " $(InputPath)\n\n";
if(output == 0)
{
fout << source << "_force : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"";
fout << source << "_force : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"\n\t";
fout << command << "\n\n";
}
// Write a rule for every output generated by this command.
fout << cmSystemTools::ConvertToOutputPath(output)
<< " : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"";
<< " : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"\n\t";
fout << command << "\n\n";
fout << "# End Custom Build\n\n";
}