mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
bug fix
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user