diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2015-07-16 19:52:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-21 14:11:53 (GMT) |
commit | 27e097645350fc07dadc79a8944b47a97e5ecdc3 (patch) | |
tree | 300746dea4a5a215cda999d6a2e9c2425b196d0d /Source/cmExtraCodeBlocksGenerator.h | |
parent | d740762181976834df32bc9baaf273e5278313b0 (diff) | |
download | CMake-27e097645350fc07dadc79a8944b47a97e5ecdc3.zip CMake-27e097645350fc07dadc79a8944b47a97e5ecdc3.tar.gz CMake-27e097645350fc07dadc79a8944b47a97e5ecdc3.tar.bz2 |
cmExtraCodeBlocksGenerator: port to cmXMLWriter
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.h')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.h b/Source/cmExtraCodeBlocksGenerator.h index 4abfa7e..e2f09de 100644 --- a/Source/cmExtraCodeBlocksGenerator.h +++ b/Source/cmExtraCodeBlocksGenerator.h @@ -18,7 +18,7 @@ class cmLocalGenerator; class cmMakefile; class cmGeneratorTarget; -class cmGeneratedFileStream; +class cmXMLWriter; /** \class cmExtraCodeBlocksGenerator * \brief Write CodeBlocks project files for Makefile based projects @@ -56,7 +56,7 @@ private: std::string BuildMakeCommand(const std::string& make, const char* makefile, const std::string& target, const std::string& makeFlags); - void AppendTarget(cmGeneratedFileStream& fout, + void AppendTarget(cmXMLWriter& xml, const std::string& targetName, cmGeneratorTarget* target, const char* make, |