diff options
author | Brad King <brad.king@kitware.com> | 2001-03-19 16:02:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-19 16:02:58 (GMT) |
commit | 410f7d12db3ce85d4b69176beab48fb48b21c188 (patch) | |
tree | dfc475ce00b88cb71058bd08d38e45c52546f5af /Source/cmDSPWriter.cxx | |
parent | 28cdb197821f9d01e171070244d92ac250c47f0a (diff) | |
download | CMake-410f7d12db3ce85d4b69176beab48fb48b21c188.zip CMake-410f7d12db3ce85d4b69176beab48fb48b21c188.tar.gz CMake-410f7d12db3ce85d4b69176beab48fb48b21c188.tar.bz2 |
ENH: Added text files group to DSP output. CMakeLists.txt is duplicated in this group and outside, but fixing this will require a reorganization of custom rule generation. I should get to that soon.
Diffstat (limited to 'Source/cmDSPWriter.cxx')
-rw-r--r-- | Source/cmDSPWriter.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx index 8992f56..10c9da8 100644 --- a/Source/cmDSPWriter.cxx +++ b/Source/cmDSPWriter.cxx @@ -189,6 +189,9 @@ void cmDSPMakefile::WriteDSPFile(std::ostream& fout) this->WriteDSPBeginGroup(fout, "XML Files", "xml"); this->WriteDSPBuildRules(fout,"xml"); this->WriteDSPEndGroup(fout); + this->WriteDSPBeginGroup(fout, "Text Files", "txt"); + this->WriteDSPBuildRules(fout,"txt"); + this->WriteDSPEndGroup(fout); this->WriteDSPBuildRule(fout); this->WriteDSPFooter(fout); } |