diff options
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.h')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.h b/Source/cmExtraCodeBlocksGenerator.h index 9d59936..6daa976 100644 --- a/Source/cmExtraCodeBlocksGenerator.h +++ b/Source/cmExtraCodeBlocksGenerator.h @@ -22,6 +22,7 @@ class cmLocalGenerator; class cmMakefile; +class cmTarget; /** \class cmExtraCodeBlocksGenerator * \brief Write CodeBlocks project files for Makefile based projects @@ -50,6 +51,10 @@ private: void CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs, const std::string& filename); + std::string GetCBCompilerId(const cmMakefile* mf); + int GetCBTargetType(cmTarget* target); + std::string BuildMakeCommand(const std::string& make, const char* makefile, + const char* target); }; |