summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraKateGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-06 22:49:19 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-08 22:00:19 (GMT)
commit10cf42f5ae660c460d5d5f60936250866b33dc94 (patch)
tree7028b7b53297c5b4339cb4922d7e877b05b1cbb4 /Source/cmExtraKateGenerator.h
parente46ef270ed7c96586ed755322174791374241574 (diff)
downloadCMake-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.h9
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,