From cb2b5a188a442bb8289390bc5fd5224ded5a2ead Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Mon, 5 Jan 2004 12:53:03 -0500 Subject: [PATCH] fix for long lines with post build rules --- Source/cmLocalVisualStudio6Generator.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index a78f7a62b..0d3f8ca8c 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -664,7 +664,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target, } else { - customRuleCode += "\t"; + customRuleCode += "\\\n\t"; } customRuleCode += this->ConvertToRelativeOutputPath(cc.GetCommand().c_str()) + " " + cc.GetArguments(); } @@ -683,7 +683,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target, } else { - customRuleCode += "\t"; + customRuleCode += "\\\n\t"; } customRuleCode += this->ConvertToRelativeOutputPath(cc.GetCommand().c_str()) + " " + cc.GetArguments(); } @@ -704,7 +704,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target, } else { - customRuleCode += "\t"; + customRuleCode += "\\\n\t"; } customRuleCode += this->ConvertToRelativeOutputPath(cc.GetCommand().c_str()) +