diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-19 20:13:48 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-19 20:13:48 (GMT) |
commit | 89e037ee19ed033fee0830a0c56c7ae956265512 (patch) | |
tree | 7a98427243bde8b3e73210dee288784981b46f9c /Source/cmDSWWriter.cxx | |
parent | a4bbb55efdbb8d1b948b55248b54a3532f2f9d41 (diff) | |
download | CMake-89e037ee19ed033fee0830a0c56c7ae956265512.zip CMake-89e037ee19ed033fee0830a0c56c7ae956265512.tar.gz CMake-89e037ee19ed033fee0830a0c56c7ae956265512.tar.bz2 |
ENH: first pass at cache, clean up the unix generator, clean up configure.in some
Diffstat (limited to 'Source/cmDSWWriter.cxx')
-rw-r--r-- | Source/cmDSWWriter.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/cmDSWWriter.cxx b/Source/cmDSWWriter.cxx index 2bb46ee..082f64e 100644 --- a/Source/cmDSWWriter.cxx +++ b/Source/cmDSWWriter.cxx @@ -165,7 +165,8 @@ void cmDSWMakefile::WriteDSWFile(std::ostream& fout) cmSystemTools::ReplaceString(dir, homedir.c_str(), ""); // Get the list of create dsp files from the cmDSPMakefile, more // than one dsp could have been created per input CMakeLists.txt file - std::vector<std::string> dspnames = (*k)->GetDSPMakefile()->GetCreatedProjectNames(); + std::vector<std::string> dspnames = + (*k)->GetDSPMakefile()->GetCreatedProjectNames(); for(std::vector<std::string>::iterator si = dspnames.begin(); si != dspnames.end(); ++si) { @@ -188,7 +189,8 @@ void cmDSWMakefile::WriteProject(std::ostream& fout, cmDSPMakefile* project) { project->GetMakefile()->ExpandVariables(); - fout << "###############################################################################\n\n"; + fout << "#########################################################" + "######################\n\n"; fout << "Project: \"" << dspname << "\"=" << dir << "\\" << dspname << ".dsp - Package Owner=<4>\n\n"; fout << "Package=<5>\n{{{\n}}}\n\n"; @@ -215,11 +217,13 @@ void cmDSWMakefile::WriteProject(std::ostream& fout, void cmDSWMakefile::WriteDSWFooter(std::ostream& fout) { - fout << "###############################################################################\n\n"; + fout << "######################################################" + "#########################\n\n"; fout << "Global:\n\n"; fout << "Package=<5>\n{{{\n}}}\n\n"; fout << "Package=<3>\n{{{\n}}}\n\n"; - fout << "###############################################################################\n\n"; + fout << "#####################################################" + "##########################\n\n"; } |