diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-01-05 17:53:03 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-01-05 17:53:03 (GMT) |
commit | cb2b5a188a442bb8289390bc5fd5224ded5a2ead (patch) | |
tree | 98d94db7a49c2a5a12d89abe60e0901d79142e9a /Source/cmLocalVisualStudio6Generator.cxx | |
parent | 15cdf406d629d80e83910cd064bdb832057e64ca (diff) | |
download | CMake-cb2b5a188a442bb8289390bc5fd5224ded5a2ead.zip CMake-cb2b5a188a442bb8289390bc5fd5224ded5a2ead.tar.gz CMake-cb2b5a188a442bb8289390bc5fd5224ded5a2ead.tar.bz2 |
fix for long lines with post build rules
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index a78f7a6..0d3f8ca 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()) + |