Fix a bug in generator. This one is good: This bug is only present on Windows 98, but since RunCommand did not work, it never showed on the dashboard... In any case commands in Visual studio 6 should be in windows style slashes
This commit is contained in:
parent
ffe1132407
commit
789cc71855
|
@ -555,7 +555,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target,
|
|||
{
|
||||
customRuleCode += "\t";
|
||||
}
|
||||
customRuleCode += cc.GetCommand() + " " + cc.GetArguments();
|
||||
customRuleCode += cmSystemTools::ConvertToOutputPath(cc.GetCommand().c_str()) + " " + cc.GetArguments();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue