diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-08-28 20:10:44 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-08-28 20:10:44 (GMT) |
commit | 58243026126dc0bf2c2ba1921e56de6cc1f9f77d (patch) | |
tree | fa922a4d16375799c7f06727959164b07ef68def /Source/cmLocalVisualStudio6Generator.cxx | |
parent | 2b2a9d73da58786d31a6b7a6636260803782cb79 (diff) | |
download | CMake-58243026126dc0bf2c2ba1921e56de6cc1f9f77d.zip CMake-58243026126dc0bf2c2ba1921e56de6cc1f9f77d.tar.gz CMake-58243026126dc0bf2c2ba1921e56de6cc1f9f77d.tar.bz2 |
bad evil nasty ken
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index df67224..393e5a8 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -472,13 +472,13 @@ void cmLocalVisualStudio6Generator::WriteCustomRule(std::ostream& fout, libPath += "$(INTDIR)"; libPath += dep; libPath += ".exe"; - fout << cmSystemTools::ConvertToOutputPath(libPath.c_str()) - << ";"; + fout << "\\\n\t" << + cmSystemTools::ConvertToOutputPath(libPath.c_str()); } else { - fout << cmSystemTools::ConvertToOutputPath(d->c_str()) - << ";"; + fout << "\\\n\t" << + cmSystemTools::ConvertToOutputPath(d->c_str()); } } fout << "\n"; |