diff options
author | Brad King <brad.king@kitware.com> | 2001-03-08 23:13:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-08 23:13:43 (GMT) |
commit | 1b6afc5c53d29a97dd386d32f0ab1adf70315a24 (patch) | |
tree | 51b8e7dceae1b01466ad65630f54874325b989d4 /Source/cmDSPWriter.cxx | |
parent | 670afe1fc03dc124f4ace55ecb5200510282f582 (diff) | |
download | CMake-1b6afc5c53d29a97dd386d32f0ab1adf70315a24.zip CMake-1b6afc5c53d29a97dd386d32f0ab1adf70315a24.tar.gz CMake-1b6afc5c53d29a97dd386d32f0ab1adf70315a24.tar.bz2 |
ENH: Added output of custom rules for XML sources.
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 0a1525a..db60501 100644 --- a/Source/cmDSPWriter.cxx +++ b/Source/cmDSPWriter.cxx @@ -202,6 +202,9 @@ void cmDSPMakefile::WriteDSPFile(std::ostream& fout) this->WriteDSPBeginGroup(fout, "Header Files", "h;hpp;hxx;hm;inl"); this->WriteDSPBuildRules(fout,"h;hpp;hxx;hm;inl"); this->WriteDSPEndGroup(fout); + this->WriteDSPBeginGroup(fout, "XML Files", "xml"); + this->WriteDSPBuildRules(fout,"xml"); + this->WriteDSPEndGroup(fout); this->WriteDSPBuildRule(fout); this->WriteDSPFooter(fout); } |