bug fix for vs6 custom commands
This commit is contained in:
parent
feb5efa1b0
commit
5be2ec1d47
|
@ -626,7 +626,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target,
|
||||||
if (!init)
|
if (!init)
|
||||||
{
|
{
|
||||||
// header stuff
|
// header stuff
|
||||||
customRuleCode = "PreLink_Cmds=";
|
customRuleCode += "PreLink_Cmds=";
|
||||||
init = true;
|
init = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -645,7 +645,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target,
|
||||||
if (!init)
|
if (!init)
|
||||||
{
|
{
|
||||||
// header stuff
|
// header stuff
|
||||||
customRuleCode = "PreLink_Cmds=";
|
customRuleCode += "PreLink_Cmds=";
|
||||||
init = true;
|
init = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -666,7 +666,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target,
|
||||||
if (!init)
|
if (!init)
|
||||||
{
|
{
|
||||||
// header stuff
|
// header stuff
|
||||||
customRuleCode = "PostBuild_Cmds=";
|
customRuleCode += "PostBuild_Cmds=";
|
||||||
init = true;
|
init = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue