diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-29 14:12:09 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-29 14:12:09 (GMT) |
commit | a392c7b5b19923ed88ff0b7ad7d2e578ad58ed1a (patch) | |
tree | b9c21304b55dffcf45c64fa193204cbca0f2a4a5 /Source/cmExtraCodeBlocksGenerator.h | |
parent | fc9f19b202844fb612ccf7e0c38181e0959e7ac1 (diff) | |
download | CMake-a392c7b5b19923ed88ff0b7ad7d2e578ad58ed1a.zip CMake-a392c7b5b19923ed88ff0b7ad7d2e578ad58ed1a.tar.gz CMake-a392c7b5b19923ed88ff0b7ad7d2e578ad58ed1a.tar.bz2 |
ENH: don't hardcode gcc
-put the include dirs in the project file to enable autocompletion
-prepare for nmake
Alex
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); }; |