diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-06 22:49:19 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-08 22:00:19 (GMT) |
commit | 10cf42f5ae660c460d5d5f60936250866b33dc94 (patch) | |
tree | 7028b7b53297c5b4339cb4922d7e877b05b1cbb4 /Source/cmExtraKateGenerator.h | |
parent | e46ef270ed7c96586ed755322174791374241574 (diff) | |
download | CMake-10cf42f5ae660c460d5d5f60936250866b33dc94.zip CMake-10cf42f5ae660c460d5d5f60936250866b33dc94.tar.gz CMake-10cf42f5ae660c460d5d5f60936250866b33dc94.tar.bz2 |
Kate: Port API to cmLocalGenerator.
Diffstat (limited to 'Source/cmExtraKateGenerator.h')
-rw-r--r-- | Source/cmExtraKateGenerator.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmExtraKateGenerator.h b/Source/cmExtraKateGenerator.h index f800feb..b20d0a7 100644 --- a/Source/cmExtraKateGenerator.h +++ b/Source/cmExtraKateGenerator.h @@ -39,9 +39,10 @@ public: virtual void Generate(); private: - void CreateKateProjectFile(const cmMakefile* mf) const; - void CreateDummyKateProjectFile(const cmMakefile* mf) const; - void WriteTargets(const cmMakefile* mf, cmGeneratedFileStream& fout) const; + void CreateKateProjectFile(const cmLocalGenerator* lg) const; + void CreateDummyKateProjectFile(const cmLocalGenerator* lg) const; + void WriteTargets(const cmLocalGenerator* lg, + cmGeneratedFileStream& fout) const; void AppendTarget(cmGeneratedFileStream& fout, const std::string& target, const std::string& make, @@ -49,7 +50,7 @@ private: const std::string& path, const char* homeOutputDir) const; - std::string GenerateFilesString(const cmMakefile* mf) const; + std::string GenerateFilesString(const cmLocalGenerator* lg) const; std::string GetPathBasename(const std::string& path) const; std::string GenerateProjectName(const std::string& name, const std::string& type, |